user3757305
user3757305

Reputation: 179

Problems with Apache Tomcat and Wamp

this is probably a noob problem but I can't get this to work. The Apache on wamp is currently on Listen 8080 because the regular localhost wouldn't work. However when I turn on Tomcat it is also on 8080 which is conflicting with wamp. I am connecting to Tomcat via Eclipse plugin. With Tomcat on I can't get into phpmyadmin on wamp.

Apache's httpd.conf in wamp is set to:

Listen 8080

ServerName localhost:80

Only with this setting I can get wamp to work.

localhost:8080 will work and 127.0.0.1:8080 works as well. Turning on Tomcat will automatically override wamp's settings. How can I get wamp to just be a regular localhost address and not have it take an 8080 port where Tomcat is sitting on?

Upvotes: 0

Views: 1975

Answers (1)

YJS
YJS

Reputation: 11

try to change the port tomcat is using.

  • Go to conf folder in tomcat installation directory

    e.g. C:\Tomcat 6.0\conf\

  • Edit following tag in server.xml file

  • Change the port=8080 value to port=80

  • Save file.

or another solution is , you can change your wamp port from 8080 to any other one...

Upvotes: 1

Related Questions