What is the default port of tomcat?
The default port of tomcat is port 8080.
When we don’t want to use port 8080 and need to change it to another port, we can:
Recommended: "Java Learning"
1, open In the conf directory under the tomcat installation directory, find the server.xml file.
Find the following code
2, modify the port number
The 8080 above is the external access port of tomcat,
We will modify it to other ports , but to avoid conflict with the system port number, choose an unused port number, then save and exit
Change the port number to 8099
3, restart tomcat to take effect
[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]#
For more programming-related content, please pay attention to theProgramming Introductioncolumn on the php Chinese website!
The above is the detailed content of What is the default port of tomcat. For more information, please follow other related articles on the PHP Chinese website!