一、在指定目录创建脚本并赋予755权限
vim /etc/init.d/tomcat
#!/bin/bash## kenny kenny.zhou@tom.com# /etc/rc.d/init.d/tomcat# init script for tomcat precesses## processname: tomcat# description: tomcat is a j2se server# chkconfig: 2345 86 16# description: Start up the Tomcat servlet engine.if [ -f /etc/init.d/functions ]; then. /etc/init.d/functionselif [ -f /etc/rc.d/init.d/functions ]; then. /etc/rc.d/init.d/functionselseecho -e "/atomcat: unable to locate functions lib. Cannot continue."exit -1fiRETVAL=$?CATALINA_HOME="/usr/local/tomcat"case "$1" instart)if [ -f $CATALINA_HOME/bin/startup.sh ];thenecho $"Starting Tomcat"$CATALINA_HOME/bin/startup.shfi;;stop)if [ -f $CATALINA_HOME/bin/shutdown.sh ];thenecho $"Stopping Tomcat"$CATALINA_HOME/bin/shutdown.shfi;;*)echo $"Usage: $0 {start|stop}"exit 1;;esacexit $RETVAL
二、在tomcat的配置文件中添加相应参数
vim /usr/local/tomcat/bin/catalina.sh
export JAVA_HOME=/usr/local/jdk1.8.0_51/export CATALINA_HOME=/usr/local/tomcat/export CATALINA_BASE=/usr/local/tomcat/export CATALINA_TMPDIR=/usr/local/tomcat/temp
三、添加tomcat为系统服务并指定在个各个控制台为开机启动模式
chkconfig --add tomcat
chkconfig tomcat on
chkconfig --list tomcat
四、server启动验证成功,即可开机自动执行
service tomcat start