系统相关
首页 > 系统相关> > centos tomcat开机自启

centos tomcat开机自启

作者:互联网

把tomcat的catalina.sh脚本文件拷一份到/etc/init.d目录

cp /usr/local/tomcat/bin/catalina.sh /etc/init.d/tomcat

并把改脚本授权755权限

chmod 755 /etc/init.d/tomcat

拷贝的脚本并不能直接使用,还需要修改添加一些配置。

vi /etc/init.d/tomcat

#chkconfig: 2345 10 90

#description: tomcat8 service

export JAVA_HOME=/opt/jdk1.8.0_151  #jdk路径 export CATALINA_HOME=/usr/local/tomcat    #tomcat路径       使用chkconfig --add命令添加服务 chkconfig --add tomcat 设置开机自启 chkconfig  tomcat  on 启动 service tomcat8 start 停止 service tomcat8 stop 查看开机自启项 chkconfig  --list  

标签:service,tomcat,centos,etc,init,自启,chkconfig,tomcat8
来源: https://www.cnblogs.com/hanks-mimi/p/16500860.html