为了让Tomcat在Ubuntu上自动启动,当电脑重起时, 你必须添加一个脚本, 使其能自动启动或关闭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.pidcase $1 instart)sh /usr/share/tomcat7/bin/startup.sh;;stop) sh /usr/share/tomcat7/bin/shutdown.sh;;restart)sh /usr/share/tomcat7/bin/shutdown.shsh /usr/share/tomcat7/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/K99tomcatsudo 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