tomcat7在UBUNTU上自动启动

为了让tomcat自动启动当电脑重起时, 你必须添加一个脚本, 使其能自动启动或关闭tomcat

To make tomcat automatically start when we boot up the computer, you can add a script to make it auto-start and shutdown.


sudo gedit /etc/init.d/tomcat7

Now paste in the following:
添加下面文字

# Tomcat auto-start
#
# description: Auto-starts tomcat
# processname: tomcat
# pidfile: /var/run/tomcat.pid

case $1 in
start)
sh /opt/apache-tomcat-7.0.65/bin/startup.sh
;;
stop)
sh /opt/apache-tomcat-7.0.65/bin/shutdown.sh
;;
restart)
sh /opt/apache-tomcat-7.0.65/bin/shutdown.sh
sh /opt/apache-tomcat-7.0.65/bin/startup.sh
;;
esac
exit 0



修改权限使其执行
You’ll need to make the script executable by running the chmod command:


sudo chmod 755 /etc/init.d/tomcat7
最后一步就是创建一个链接文件在启动目录, 执行下面两条语句
The last step is actually linking this script to the startup folders with a symbolic link. Execute these two commands and we should be on our way.


sudo ln -s /etc/init.d/tomcat7 /etc/rc1.d/K99tomcat
sudo ln -s /etc/init.d/tomcat7 /etc/rc2.d/S99tomcat

Tomcat should now be fully installed and operational. Enjoy!
这个时候TOMCAT应该是能运行了
sudo /etc/init.d/tomcat7 restart

猜你喜欢

转载自tobeeasy.iteye.com/blog/2273589