• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Port 80

Saj

Remember my name
Joined
Feb 26, 2008
Messages
2,127
Reaction score
6
Hey, I have a problem. When I try to open port 80 on my router it says that it conflict with another service, what can I do to shut port 80 down and use it again? Tried thru the router but I can't see that port 80 is open..
 
If another process is using the same port it'll be a conflict. Therefore I suggest you should use cmd to check what process is using port 80.

To check what ports are used by a process, write this in cmd:
Code:
netstat -ao | find "process id"

To find the process that is using port 80 (The process-id will show up to the right):
Code:
netstat -n -ao | find "80"

Use Process Explorer for a more advanced process handling. It will be easier for you to see the process ids of your processes.
 
Last edited:
Back
Top