Hey everybody.
So i wanted to start out as an previous experinced java developer, to try out tomcat6, on my Test Server Machine, so i totally reinstalled my Debian6 on it, and only installed
sshd
tomcat6
tomcat6-admin
tomcat6-common
tomcat6-docs
tomcat6-user
now tomcat6 works perfectly on port 8080, but i wanted to run it as main httpd service, when i later learn to contrcut some nice looking stuff. i have been working alot on how it all works, as it is very diffrent from my latest uses (PHP).
now the most important thing to know, is ofcasue to setup and configure the server (ofcasue) :P
but i kinda gave up after 5 hours of trying myself.
how in (some religious god)'s name do you change the listening port from 8080 to 80?
i tryed to change /etc/tomcat6/server.xml
from
Code:
<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
URIEncoding="UTF-8"
redirectPort="8443" />
to
Code:
<Connector port="80" protocol="HTTP/1.1"
connectionTimeout="20000"
URIEncoding="UTF-8"
redirectPort="8443" />
it seems to totally stop listening when i do that, my netstat dont evven list it as a listener?
hmm do i need to do something else?