Link to home
Start Free TrialLog in
Avatar of bsjld
bsjld

asked on

Optional http port other than 80

I'm new to this but are there any other ports i can use other than port 80 (http), but does the same thing.  I have something using 80 and forwarding so i want to use another port for http.
Avatar of 4drahil
4drahil
Flag of United Kingdom of Great Britain and Northern Ireland image

Any port as long as it is not already bound.

You would have to browse to it using something like http://localhost:8080

8080 being the port number
What 4drahil said although I also suggest not using anything that is common for another purpose like SSH, FTP, HTTPS, etc.  Here is a decent wiki article.

4drahil's example of 8080 is a good one and pretty common.  Remember you'll either need to configure the web application to use the alternate port or setup the forwarding to make the redirect.

HTH
Avatar of bsjld
bsjld

ASKER

i used 1025, but that didn't work.   I had to activate port 80 again and it worked, but do not want to use port 80
I assume you have a web application/site of some kind that you're changing, right?

When you set it to port 1025, how are you testing?
ASKER CERTIFIED SOLUTION
Avatar of Sanjay Santoki
Sanjay Santoki
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of bsjld

ASKER

Thank you, that seemed to have worked going and binding it.