這篇文章主要為大家詳細(xì)介紹了Tomcat服務(wù)配置和自啟動的相關(guān)資料歼争,具有一定的參考價值冒掌,感興趣的小伙伴們可以參考一下
如果我們使用war 包進行部署項目的時候歪今,需要把包放進Tomcat的目錄下萧锉,為了使我們的服務(wù)能夠在服務(wù)器重啟的時候自動啟動起來端逼,我們需要把Tomcat設(shè)置成自起服務(wù)朗兵。
配置 Tomcat 服務(wù)
新建服務(wù)腳本
[root@localhost ~]# vim /etc/init.d/tomcat
添加腳本內(nèi)容
#!/bin/bash
# description: Tomcat7 Start Stop Restart
# processname: tomcat7
# chkconfig: 234 20 80
CATALINA_HOME=/usr/local/tomcat/apache-tomcat-7.0.77
case $1 in
? ? start)
? ? ? ? sh $CATALINA_HOME/bin/startup.sh
? ? ? ? ;;
? ? stop)
? ? ? ? sh $CATALINA_HOME/bin/shutdown.sh
? ? ? ? ;;
? ? restart)
? ? ? ? sh $CATALINA_HOME/bin/shutdown.sh
? ? ? ? sh $CATALINA_HOME/bin/startup.sh
? ? ? ? ;;
? ? *)
? ? ? ? echo 'please use : tomcat {start | stop | restart}'
? ? ;;
esac
exit 0
執(zhí)行腳本,啟動顶滩、停止 和 重啟服務(wù)余掖。
啟動:service tomcat start
停止:service tomcat stop
重啟:service tomcat restart
Tomcat 配置開機自啟動
向chkconfig添加 tomcat 服務(wù)的管理
[root@localhost ~]# chkconfig --add tomcat
設(shè)置tomcat服務(wù)自啟動
[root@localhost ~]# chkconfig tomcat on
查看tomcat的啟動狀態(tài)
[root@localhost ~]# chkconfig --list | grep tomcat
狀態(tài)如下:
[root@localhost ~]# chkconfig –list | grep tomcat
tomcat 0:off 1:off 2:on 3:on 4:on 5:on 6:off
關(guān)閉tomcat服務(wù)自啟動:
chkconfig tomcat off
刪除tomcat服務(wù)在chkconfig上的管理:
chkconfig –del tomcat
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助礁鲁,也希望大家多多支持腳本之家盐欺。
您可能感興趣的文章:
tomcat服務(wù)器如何配置字符集為utf-8徹底解決中文亂碼的問題詳解
阿里云Centos7下安裝Redis及tomcat設(shè)置自啟動的方法
~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
作者:這塊顯卡有點冷
來源:腳本之家
鏈接:https://www.jb51.net/article/146295.htm
著作權(quán)歸作者所有,任何形式的轉(zhuǎn)載都請聯(lián)系作者獲得授權(quán)并注明出處仅醇。
~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~