linux启动tomcat过程,像eclipse一样在控制台输出(方法教程)
程序员文章站
2022-07-01 18:34:44
方法一:
Linux下查看Tomcat的控制台信息:
命令:1、cd /***/***/apache-tomcat-7.0.73/logs/
2、tail -f catalina.out...
方法一:
Linux下查看Tomcat的控制台信息:
命令:1、cd /***/***/apache-tomcat-7.0.73/logs/
2、tail -f catalina.out
即可;
看到像eclipse一样在控制台的输出
方法二:
Windows下启动tomcat,一般直接运行startup.bat,启动后如下图所示:
Linux下直接启动./startup.sh但是查看不到启动日志信息,通过ps –ef|grep tomcat查看,实际已经启动,如下图所示:
但是可以通过运行./catalina.sh run启动,就可以像windows中一样查看tomcat启动信息了。