1、重啟tomcat 使用命令:ps: 查詢tomcat進程號 kill:殺死tomcat進程 步驟: 1)ps -ef | grep tomcat 查詢tomcat進程號, 2)kill -9 進程號 強制殺死該進程2 3)ps -ef | grep tomcat 再次查詢進程是否已經被殺死 4) ...
1、重啟tomcat
使用命令:ps: 查詢tomcat進程號 kill:殺死tomcat進程 步驟: 1)ps -ef | grep tomcat 查詢tomcat進程號, 2)kill -9 進程號 強制殺死該進程2 3)ps -ef | grep tomcat 再次查詢進程是否已經被殺死 4)cd 到tomcat/bin目錄 ./startup.sh 重啟tomcat
2、查閱日誌記錄
使用命令:tail:查看文本 步驟: 1)cd 到日誌文件目錄 2)tail -500f 文件名, 查看最後500行日誌 3)操作前臺頁面,查看列印的日誌。