Home > Article > Operation and Maintenance > centos system cannot access tomcat
1. Start tomcat
Enter the bin folder of the directory where tomcat is located and execute the "sh startup.sh
" command to start tomcat. If the following situation occurs, tomcat starts successfully.
(Recommended tutorial: centos usage tutorial)
2. Verify whether tomcat starts successfully
Enter" ps -ef|grep tomcat
" command to verify whether tomcat starts successfully. If the following situation occurs, it means the startup is successful.
3. Check whether the firewall is started.
Enter the command " firewall-cmd --state
" If the following message appears: This situation indicates that it is running. If it is not running, you need to execute the command "systemctl start firewalld" to start the firewall service
4. Check whether port 8080 is opened by the firewall
Enter the command " firewall-cmd --permanent --zone=public --list-ports
" If the situation shown in the figure appears, port 8080 is opened
If the situation shown in the picture does not occur, you need to execute the command "firewall-cmd --zone=public --add-port=8080/tcp --permanent
" to open port 8080, If "success" appears, it means the addition is successful.
5. Restart the firewall
Enter the command "firewall-cmd --reload
" to restart the firewall. If the word "success" appears, it means the restart is successful.
6. Verify whether the opened 8080 port is effective
Enter the command” firewall-cmd --zone=public --query-port= 8080/tcp
" Verify whether the 8080 port is valid. If the word "yes" appears, it means it is valid.
At this point you can use an external browser to access tomcat in centos.
Related video tutorial recommendations: linux video tutorial
The above is the detailed content of centos system cannot access tomcat. For more information, please follow other related articles on the PHP Chinese website!