Questions tagged [port80]

Port 80 in Internet refers to TCP port 80, most often used by HyperText Transfer Protocol

Port 80 in Internet refers to TCP port 80, most often used by HyperText Transfer Protocol

116 questions
4
votes
1 answer

Find out what's using port 80 on ubuntu

I'm having trouble running a service on port 80 since it seems to be already in use by another program. Problem is, using nestat -lpn | grep :80 (or variants of this command) does not show any process using port 80. I'm runnning Ubuntu 12.04.1 LTS,…
sinister3vil
  • 43
  • 1
  • 3
4
votes
3 answers

How to run nexus sonatype on port 80?

I have a fedora server. I installed tomcat via yum package manager. Then I deployed the nexus war on the webapps folder. I tryed using jsvc to run the server on port 80 and did not work. I saw you can also use port fowarding. What is the best…
Guillaume Massé
  • 7,057
  • 6
  • 37
  • 54
3
votes
3 answers

IIS Manager Error - Unable to bind to the underlying transport for [::]:80.The process cannot access the file because

I know that this question has been asked in multiple forums and have several versions of the answers.. Unfortunately, none of those answers helped me out to resolve my issue. I stood up an AWS EC2 instance of Windows Server 2016 and installed IIS,…
Vinay
  • 268
  • 4
  • 16
3
votes
3 answers

Error: listen EACCES 0.0.0.0:8080 but can't find PORT?

I have this code currently: var express = require('express'); var app = express(); var bodyParser = require('body-parser'); var sessionManager =…
DYRtLAWWWOTS
  • 73
  • 1
  • 6
3
votes
0 answers

"Failed to connect to "url" port 80: Timed Out" in R, how can I solve?

I'm trying to test this code: library(XML) library(RCurl) url <- "http://en.wikipedia.org/wiki/List_of_countries_by_population" urldata <- getURL(url) When I press enter, the R returns: Failed to connect to en.wikipedia.org port 80: Timed…
3
votes
3 answers

windows 10, Xampp, Apache will not start, port 80 in use

Trying to install and launch Apache from Xampp... Error message: "Problem detected! Port 80 in use by "Unable to open process" with PID 4!" No answer found in previous posts. ctrl+alt+del >details give: PID4: Système et mémoire compressée fichier…
Seylione
  • 47
  • 1
  • 6
3
votes
1 answer

Port 80 blocked on cpanel due to phpunit malicious file eval-stdin.php

I have added google plus login to my website (hosted on shared server). While composing dependent libraries through composer.json for google login, the phpunit library was downloaded as a part. It contains a file…
Aman Dhanda
  • 438
  • 3
  • 14
3
votes
2 answers

How to determine what server is listening on Port 80

I need to determine, what web server (IIS, Apache, Jetty) is running on port 80 in Java. Are there any solutions to get the informations via port 80? Thanx and reguards Stefan
user30724
  • 215
  • 1
  • 2
  • 6
3
votes
1 answer

Which port should I run WebSockets server on if 80 is already used by Apache?

I created a WebSockets app to provide communication between connected clients, but I'm concerned about corporate firewalls and ISP rules that might block the port 8080 it's using. But the usual HTTP port 80 (that really no one would block) is…
Ondřej Mirtes
  • 4,279
  • 21
  • 36
3
votes
2 answers

How can I use my xampp server so that everyone from the outer web can acces it

I'm now having problems with this for over a week. I'm running a minecraft server on my computer. Therefore I used no-ip.org to have a "fixed" ip. I forwared all ports for the server and my friends can access without any problems. Later I thought I…
BrainStone
  • 2,568
  • 5
  • 25
  • 54
2
votes
1 answer

Icecast port 80

Elsewhere on Stack Overflow is a question about getting Icecast to appear on port 80, which I have read but still cannot get my server to work on port 80. My icecast.xml has these items
2
votes
2 answers

How to run tomcat 8.5 on port 80 / remove 8080. tomcat 8.5.16, centos 7minimal install, hosting 24

This question is unique to Tomcat 8.5 other answers are for 7 and do not work as described Firstly I've been studying tomcat docs, and online questions for 20 hours now. I've built my server from scratch about ten times to learn the process and try…
danbdex
  • 35
  • 1
  • 10
2
votes
1 answer

Trying to set AUTHBIND=yes, but file etc/default/tomcat8 not created when installing tomcat from zip file

Hi so basically what I am trying to do is get my spring web-application to run on port 80. I have installed tomcat8 and apache on a Ubuntu server and everything is running smoothly on myDomainName.com:8080, I have tried installing Authbind to help…
Jason Delaney
  • 438
  • 9
  • 20
2
votes
1 answer

Stop port 80 on windows server 2008 r2

I have a server application which listening port 80. But when i start listening,i am taking this error : Error starting listener on port 80: Address already in use: bind How can i stop port 80 to use it? Note : I have stopped "world wide web…
Seçkin Durgay
  • 2,532
  • 3
  • 23
  • 35
2
votes
1 answer

How to check the process running on specific port in NSIS

I'm using NSIS to develop an installer for my application. What I need to do with this installer is to check whether the port 80 is available and if it is available proceed with the installer of if it is not give an error message with the process…
Thilanka
  • 1,581
  • 5
  • 20
  • 34