`
eimhee
  • 浏览: 2115052 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

tomcat7在UBUNTU上自动启动

    博客分类:
  • JAVA
阅读更多

为了让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 /usr/share/tomcat7/bin/startup.sh
;;
stop) 
sh /usr/share/tomcat7/bin/shutdown.sh
;;
restart)
sh /usr/share/tomcat7/bin/shutdown.sh
sh /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/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

1
0
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics