猿问

如何将Tomcat港从8080号改为80号?

如何将Tomcat港从8080号改为80号?

我想执行我的web应用程序http://localhost.


慕姐4208626
浏览 603回答 3
3回答

慕沐林林

1)去conf在tomcat安装目录中的文件夹&nbsp;e.g.&nbsp;C:\Tomcat&nbsp;6.0\conf\2)在server.xml&nbsp;档案<Connector&nbsp;connectionTimeout="20000"&nbsp;port="8080"&nbsp;protocol="HTTP/1.1"&nbsp;redirectPort="8443"/>3)更改port=8080价值port=804)保存文件。5)停止Tomcat并重新启动它。

哔哔one

Ubuntu14.04LTS,在AmazonEC 2中。以下步骤为我解决了这个问题:1.编辑server.xml并将port=“8080”更改为“80”sudo&nbsp;vi&nbsp;/var/lib/tomcat7/conf/server.xml <Connector&nbsp;connectionTimeout="20000"&nbsp;port="8080"&nbsp;protocol="HTTP/1.1"&nbsp;redirectPort="8443"/>2.编辑tomcat 7文件(如果未创建该文件,则需要创建该文件)sudo&nbsp;vi&nbsp;/etc/default/tomcat7取消注释并更改#AUTHBIND=否3.安装Authbindsudo&nbsp;apt-get&nbsp;install&nbsp;authbind4.运行以下命令,在端口80上提供tomcat 7读+执行。sudo&nbsp;touch&nbsp;/etc/authbind/byport/80 sudo&nbsp;chmod&nbsp;500&nbsp;/etc/authbind/byport/80 sudo&nbsp;chown&nbsp;tomcat7&nbsp;/etc/authbind/byport/805.重启Tomcat:sudo&nbsp;/etc/init.d/tomcat7&nbsp;restart

慕后森

在Ubuntu和Debian系统上,需要采取几个步骤:在server.xml中,更改行<Connector connectionTimeout="20000" port="8080" protocol="HTTP/1.1" redirectPort="8443"/>有port="80".使用如下命令安装推荐的(不需要的)AuthBind包:sudo apt-get install authbind在server.xml文件中启用authbind(在以下任一文件中)/etc/tomcat6或/etc/tomcat7)通过取消注释并将行设置为:AUTHBIND=yes这三个步骤都是必要的。
随时随地看视频慕课网APP
我要回答