1、ps(process status)进程状态
常用:
ps -ef | grep java ps aux | grep java
grep后面跟特定的程序。
可以用来查找pid,然后kill -pid
2、查找日志
tail :
从尾部倒叙: tail -f nohup .out tail -nf nohup .out n表示函数行数,比如: tail -100f nohup .out,输出100行。
grep :
grep -C 2 "file" hello.iml 查出文件匹配的前后两行。 grep -C n "日志内容" 文件名
参考:[Linux环境下查看日志文件命令详解]
3,端口冲突
lsof -i :port 比如: lsof -i :8084
查找到pid后,然后kill
4,防火墙命令