isha krishnan wrote:I want to change th defualt port of Apacahe Tomcat 5.5 from 8080 to 8085.
isha krishnan wrote:I am working on Eclipse IDE 6.0.
[My Blog] [JavaRanch Journal]
Ned Ryerson wrote:To change the port, edit the server.xml file in /conf for example: you will see <Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" /> to change it to port 8090: <Connector port="8090" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" />
Regards, Rene Larsen