on Windows 2012 R2 server I'm not able to use 8172 port for WebDeploy.
i have installed webdeploy 3.6.
Error is like it's already in use but when i executed the
netstat -aon | findstr :8172 command it's not showing any result.
Related
I deployed my project using jboss7.1 and also it deployed successfully
but I can't access though browser it says This site can’t be reached localhost refused to connect. how to solve this issue?
As this answer mentions,
1 Log in into server via ssh and do next actions from terminal on this server.
2. Run netstat on the port
3.Check state of 1099 port is LISTEN. Remember program name and pid ( last column output of netstat, should be something like 5812/java)
4. Try investigate, what program used it. Run ps aux | grep xxxx where xxxx - pid from step 3
I've configured(server.js) SSL support on one of mine projects.
It worked well both on my local PC and DigitalOcean's server.
But at some moment I've seen ERR_SSL_PROTOCOL_ERROR error:
Folks on the internet adviced me to play with my timezone settings, but it doesn't help at all.
Others asked me to check is there any application which could be listeting port 443, I thought it's useless because if any app has taken this port I'd get EADDRINUSE error, which I've haven't seen.
Anyway I decided double check it via terminal, running netstat -a -o | grep 443 it terminal, and I've seen this:
Well, crap. Let's get more info about this dude by tasklist /v /fi "PID eq 6036" /fo list:
When I killed skype process with taskkill /pid 6036 everything worked like a charm.
Unfortunately as mentioned here it is unable to set any other port for Skype.
Used links:
Taskkill
Tasklist
I installed IIS on my Windows 8.1 computer but now I want to work with XAMPP. At first I got this error:
Problem detected!
9:32:40 PM [Apache] Port 80 in use by "Unable to open process" with PID 4!
9:32:40 PM [Apache] Apache WILL NOT start without the configured ports free!
9:32:40 PM [Apache] You need to uninstall/disable/reconfigure the blocking application
9:32:40 PM [Apache] or reconfigure Apache and the Control Panel to listen on a different port
I deleted IIS from control panel and unchecked IIS from "Turn Windows features on and off" then I restarted.
But yet when I type localhost in my browser IIS comes up and doesn't let me use XAMPP as my localhost in my project. When I choose XAMPP for my project and run it then I see error 404 because it can't define XAMPP as my localhost.
I want to work with XAMPP, what should I do?
If you unchecked IIS (and all the child nodes) from the "Windows Features" then IIS is gone, so you might have another process using that port. Historically many applications have decided to use that (chats, music players, and others).
I would run netstat as below to find all the processes that are listening/using TCP port 80 and using the PID find in Task Manager who they are:
netstat -ano | findstr :80
There find the PID (last column) and find the culprit. If it is SYSTEM (usually PID 4, and reading your question, that is likely the case, so keep reading) , then some application is using HTTP.sys to listen in Port 80. So for that you'll need to then look in HTTP.sys, for that:
netsh http show servicestate > out.txt
notepad out.txt
there you can find the registered URLs by searching for ":80/" and see if that gives you a clue of who is doing that.
I've installed cloud 9 Ubuntu 14.04 (Desktop), and executed it by typing:
node [cloud9folder]/server.js -p 8080 -a :
I was able to connect to it by typing localhost:8080 (On the same computer that is running cloud 9) but when I went on another computer on the same network, I was unable to connect by typing [ip address of the computer running cloud9]:8080 into the browser. The browser returned: "Webpage not available (ERR_CONNECTION_REFUSED)."
I know the server computer is working, I was able to access it's apache2 website but for some reason it is unable to connect to cloud 9.
How do I fix this?
also add -l 0.0.0.0 by default server is listening on 127.0.0.1 which is not public
I have VPS with CENTOS 6.4 x86_64 virtuozzo – vps9458 and WHM 11.34.1 (build 14). I am trying to connect server by Putty but I am only getting below error:
server unexpectedly closed network connection
My WHM url look like this 1.2.3.5:2087 and in putty I am using 1.2.3.5 as Host name and 2087 as port. I always see error above.
Please guide what I am doing wrong.
Thanks
Usually connecting via putty using SSH you will need to be on port 22. So try port 22 instead.
2087 is for cpanel/whm and is meant for the web browser only.
If it still doesn't work email your web hosting provider.