1、進入到tomcat的bin目錄
使用ls命令,檢視自己的目錄檔案
cd /home/cattsoft/iona/apache-tomcat-7.0.82/bin
(cd 後面接自己的環境目錄)
2、啟動tomcat
執行bin目錄下的啟動命令指令碼
sh startup.sh或者./startup.sh
這樣tomcat就啟用了
3.檢視tomcat程序是否啟動
使用 ps aux | grep tomcat 檢視tomcat程序是否啟動
4.關閉tomcat
同樣在tomcat的bin目錄下,使用sh shutdown.sh可以關閉tomcat
5.重啟tomcat
重啟可以理解為先關閉tomcat+再啟動tomcat
sh shutdown.sh(關閉)
sh startup.sh或者./startup.sh(啟動)
linux 定時重啟 tomcat
usr local tomcat 6.0.35 為tomcat安裝目錄。1 編寫指令碼 html view plain copy print?bin sh echo restarting the tomcat 6.0.35.pid ps ef grep tomcat 6.0.35 grep v gr...
linux定時重啟tomcat
1.先編寫tomcat重啟指令碼 bin sh etc profile tomcat opt media tomcat apache tomcat 8.5.29 tomcat path bin pid ps aux grep tomcat path grep v grep grep v retomc...
Linux下自動重啟tomcat
tomcat作為開源的伺服器,效能與穩定性上比起一些商業伺服器還是要差一些。將專案部署到tomcat後隔段時間就會死掉,出現這種問題的主要原因可能是記憶體資料溢位,因為tomcat容器在發生大量與資料庫互動查詢或者操作的時候很容易出現問題。定時重啟是乙個很好的補救措施,定時重啟可以定時的清理記憶體也...