1. 打开文件
cat xxx.log
less xxx.log
more xxx.log
以上三个命令用于查看,less比较好用,可上下自由翻页
vi xxx.log
vim xxx.log
以上两个命令可用于编辑,按回车后,按i或a可进入编辑模式,编辑完后,按ESC然后输入:x保存并退出。
如果是文本文件,用vi打开
2. 重启tomcat的shell脚本
https://blog.csdn.net/liangzhuoxun/article/details/81509407
3. 启动tomcat
sh startup.sh或者./startup.sh
4. 查看tomcat进程是否启动
ps aux | grep tomcat
5. 关闭tomcat
sh shutdown.sh
6. 进入tomcat控制台
cd /usr/local/apache-tomcat-8.5.11/logs 回车键后输入
tail -100f catalina.out
7. 退出tomcat控制台
ctrl+c/z