1、启动之前先看看是否已经启动tomcat ,避免端口被占用
ps -ef|grep tomcat
2、启动:进入tomcat下的“bin”目录
输入命令:./startup.sh
3、查看tomcat中logs目录下catalina.out(日志)有没有报错
4、查看进程有没有启动
ps -ef|grep tomcat
5、查看端口 有没有启动
netstat -aul
只显示监听端口 netstat -l
列出所有 tcp 端口 netstat -at
6、最后通过URL访问
注意:即使日志没有出现错误,进程可以看到tomcat,端口也能看到被监听的端口号,也不证明tomcat已经启动成功
原文地址:https://www.cnblogs.com/xiaoyu1994/p/8145970.html
时间: 2024-12-19 07:47:56