Maison> Java> Javacommencer> le corps du texte

tomcat默认端口是多少

藏色散人
Libérer: 2020-02-18 11:07:40
original
25382 Les gens l'ont consulté

tomcat默认端口是多少

tomcat默认端口是多少?

tomcat默认端口是8080端口。

当我们不想使用8080端口,需要修改为其他端口时,我们可以:

推荐:《Java学习

1, 打开tomcat安装目录下的conf目录,找到server.xml文件。

找到以下代码

Copier après la connexion

2,修改端口号

上面的8080就是tomcat的对外访问端口,

我们将他修改为其他端口,但是要避免与系统的端口号冲突,选用一个没有使用过的端口号,然后保存退出

如图将端口号修改为8099

Copier après la connexion

3, 重启tomcat生效

[root@distzabbix tomcat]# netstat -luntp|grep 80 tcp6 0 0 127.0.0.1:8005 :::* LISTEN 26201/java tcp6 0 0 :::8009 :::* LISTEN 26201/java tcp6 0 0 :::8080 :::* LISTEN 26201/java tcp6 0 0 :::80 :::* LISTEN 850/httpd [root@distzabbix tomcat]# ./bin/shutdown.sh Using CATALINA_BASE: /usr/share/tomcat Using CATALINA_HOME: /usr/share/tomcat Using CATALINA_TMPDIR: /usr/share/tomcat/temp Using JRE_HOME: /usr/share/jdk Using CLASSPATH: /usr/share/tomcat/bin/bootstrap.jar:/usr/share/tomcat/bin/tomcat-juli.jar [root@distzabbix tomcat]# ./bin/startup.sh Using CATALINA_BASE: /usr/share/tomcat Using CATALINA_HOME: /usr/share/tomcat Using CATALINA_TMPDIR: /usr/share/tomcat/temp Using JRE_HOME: /usr/share/jdk Using CLASSPATH: /usr/share/tomcat/bin/bootstrap.jar:/usr/share/tomcat/bin/tomcat-juli.jar Tomcat started. [root@distzabbix tomcat]# netstat -luntp|grep 80 tcp6 0 0 :::8099 :::* LISTEN 5163/java tcp6 0 0 127.0.0.1:8005 :::* LISTEN 5163/java tcp6 0 0 :::8009 :::* LISTEN 5163/java tcp6 0 0 :::80 :::* LISTEN 850/httpd [root@distzabbix tomcat]#
Copier après la connexion

更多编程相关内容,请关注php中文网编程入门栏目!

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!