|
I am running IIS and Apache HTTP Server side-by-side on my localhost machine, and Apache is listening on a different port (port 81). IIS is listening to port 80. However, I can only get to my virtual domains for Apache if I type in that port number. So...
Started by hal10001 on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
You have to type in the port systems you might....
You're either going to have to have IIS redirect to Apache, or give up .
How about you swap it? Make Apache listen on port 80, IIS on port 81 to.
Oh well.
The scripting hack).
|
|
When I try to bind socket to port 80 from program I get error, but how two browsers simultaneously could listen to same port 80 ?
Started by Xinus on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
Browsers....
The web-servers do this and the browser opens.
They don't listen on port 80 they talk to port 80, or 443 if you're using SSL (or on any other port problems
Browsers actually don't listen on port 80.
|
|
Is there a way to determine what program is listening to some port, TCP or UDP, in Linux?
Started by whitequark on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at superuser):
Netstat -pln | grep 'Port number' --> on that particular port and also the user running that process ;) Already answered, but if it's on a system you don't have a shell on, running....
Ss -tlp
Quicker than netstat.
At this and this page.
|
Ask your Facebook Friends
|
Possible Duplicate:
Get connecting IP from specified ports that using by other program.
If a port is used by a program, is there any way I can listen that port and get the connected IP on that port?
Started by ED on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
But yes, you can determine the TCP/IP connections currently active on that port, as has been answered in your exact.
No, you cannot listen on a port that another process is already listening on.
|
|
How can you find out which process is listening on a port on Windows?
Started by Readonly on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Looks very useful!
netstat -aon | find /i "listening"
Use TCPView if you want a GUI for this....
C:\> netstat -a -b
(add -n to stop it trying to resolve hostnames, which will make it a lot faster)
Edit: +1 for Dane's recommendation for TCPView .
|
|
In this code
web-dir: %./www/ ; the path to rebol www subdirectory listen-port: open/lines tcp://:80 ; port used for web connections buffer: make string! 1024 ; will auto-expand if needed forever [ http-port: first wait listen-port while [not empty? client...
Started by Rebol Tutorial on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The wait on the ....
The documentation explains (however briefly).
Thus, first takes and returns the first line of data from listen-port .
Wait blocks until listen-port has activity, then returns listen-port .
|
|
Hi there i am writing a program in C and i wanna know how can i listen on com port and read the data from it please help me thanks
Answer Snippets (Read the full thread at stackoverflow):
); /* use close_down() to terminate */ printf("Listen starting on port %d\n", PORT); ssockfd = obtain() */ #include <errno.h> #include <sys/signal.h> int obtain_socket(int port); void show_message(int sd); void ....
|
|
I'd like an Apache Web Server I have installed at home to listen on port 80 and port 8080.
I've added Listen 8080 to httpd.conf and restarted the Apache services but the server doesn't seem to be listening on 8080. Punching in http://localhost:8080 times...
Started by Owen on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at serverfault):
A standard Debian install of apache will have the following fragment of configuration:
Listen no # NameVirtualHost statement here Listen 443 </IfModule>
This is telling apache to listen on port ....
On that port.
|
|
I have an app that doesn't properly stop listening on a port.
How do I force it to stop so I can open the application again/use that port again?
Started by bobber205 on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
Is on which port..
|
|
Using .NET, how can I listen to udp broadcast packets sent to .255 on any port without the need of binding to a specific port?
Started by Tronex on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You'll need to use WinPCap or similar to sniff packets at the link level .
To bind to a specific port.
|