tags:

views:

3675

answers:

7

IIS does not work when I start applications like Skype etc since they also uses the port 80.

Which port can I use to run IIS other than 80? (8080 does not work)

A: 

you can configure IIS in IIS Mgr to use EVERY port between 1 and 65535 as long it is not used by any other application

Joachim Kerschbaumer
can you configure skype like this too? ... ;-)
Simon_Weaver
+3  A: 

You can run IIS on any port you like, as long as it does not conflict with other applications. I am using 88, 8888 and other easy to remember ports.

You can find the common used port here: PORT NUMBERS, and it is safer to choose an unassigned TCP port.

Quote:

The Dynamic and/or Private Ports are those from 49152 through 65535

If IIS is working and you have troubles with an ASP.NET applications, those links might be helpful:

If you are still having troubles, it would be helpful to provide more information about your environment, the steps taken so far to solve the problem, and retagging the question (append asp.net for example)

alexandrul
I have changed the TCP/Port for my default web site to "8888", my asp.net applications still does not work. I am using IIS 6.0.
MOZILLA
+3  A: 

Port 8080 might have been used by another process in your computer.

Do netstat in command prompt to find out which server/process is using it.

Have a look at this page (http://en.wikipedia.org/wiki/Port_number) it gives you full explanation on how to use port number

manetic
Skype hijacks port 80 if IIS has not started yet.
leppie
A: 

I had this problem with Skype too. IMO it is pathetic!

I never used Skype again.

Update:

I have not seen this behavior from other applications, just Skype.

leppie
A: 

Also remember, when running on alternate ports, you need to specify the port on the URL:

http://www.example.com:8080

There may be firewalls or proxy servers to consider depending on your environment.

Justin Scott
A: 

Stopping Skype from using port 80: http://forum.skype.com/lofiversion/index.php/t15582.html

Roger Lipscombe
+5  A: