arundhaj

all that is technology

Binding port 80 to tomcat in Ubuntu

 

Edit the file /etc/default/tomcat7

change the line

#AUTHBIND=no

to

AUTHBIND=yes

and run the following commands

$ sudo touch /etc/authbind/byport/80
$ sudo chmod 500 /etc/authbind/byport/80
$ sudo chown tomcat7 /etc/authbind/byport/80

Hope this helps.

Comments