1.查看實時日志:
tail -f nohup.out
2.查看實時日志並檢索關鍵字:
tail -f nohup.out | grep "關鍵字"
3.查看文件最后100行日志:
tail -n 100 nohup.out | more
4.分頁查看所有日志:
cat nohup.out | more
5.檢索日志,並顯示該條日志的前后N行記錄:
cat nohup.out | grep -n -B10 -A10 "關鍵字"
6.查看日志,從第100行開始,顯示500行:
cat nohup.out | tail -n +100| head -n 500
7.查看日志,從第100行到200行:
cat nohup.out | head -n 1500| tail -n +1000
8.刪除包括關鍵詞的行:
sed -i '/關鍵詞/d' nohup.out
9.上線發布:
刪除文件使用實例:
rm -f 文件名
查看端口地址
ps -ef|grep java
kill端口
kill -9 端口號
運行
nohup java -jar 文件名 &
