Ubuntu将tomcat7 端口改为81
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu将tomcat7 端口改为81相关的知识,希望对你有一定的参考价值。
Ubuntu将tomcat7 端口改为81:
apt-get install authbind
vi /etc/default/tomcat7
AUTHBIND=yes (默认为#AUTHBIND=no)
:wq
vi /var/lib/tomcat7/conf/server.xml (默认为8080)
<Connector port="81" protocol="HTTP/1.1"
connectionTimeout="20000"
URIEncoding="UTF-8"
redirectPort="8443" />
:wq
touch /etc/authbind/byport/81
chown tomcat7:tomcat7 /etc/authbind/byport/81
chmod 0755 /etc/authbind/byport/81
service tomcat7 restart
netstat –ntpl | grep 81
以上是关于Ubuntu将tomcat7 端口改为81的主要内容,如果未能解决你的问题,请参考以下文章