#Linux部署Tomcat并实现开机自启动
##1、在官网上下载linux版的tomcat(区分window跟Linux),新建服务脚本 vi /etc/init.d/tomcat(名字可以自定义),要部署好jdk
添加以下内容:
CATALINA_HOME=/apache-tomcat-8.5.79
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
其中
/apache-tomcat-8.5.79为本机tomcat安装的目录
给新建的脚本设置执行权限:chmod 744 /etc/init.d/tomcat
启动 service tomcat start
会报:Neither the JAVA_HOME nor the JRE_HOME environment variable is defined At least one of these environment variable is needed to run this program
编辑 /apache-tomcat-8.5.79/bin 下的 catalina.sh 文件
vim /apache-tomcat-8.5.79/bin/catalina.sh
在最上面编写 :export JAVA_HOME=”/usr/java/jdk1.8.0_333”
再次执行 service tomcat start 去启动tomcat服务,出现了:Tomcat started就说明可以了
停止
service tomcat stop
重启
service tomcat restart
向chkconfig添加 tomcat 服务的管理
chkconfig --add tomcat
设置tomcat服务自启动
chkconfig tomcat on
查看tomcat的启动状态
chkconfig --list | grep tomcat
输出日志
tail -f /apache-tomcat-8.5.79/logs/catalina.out
本文章与https://caoju.blog.csdn.net/article/details/120573180大同小异