在Ubuntu安装Tomcat7.0及开机自动运行
在Ubuntu安装Tomcat7.0及开机自动运行
1.安装装Tomcat7.0
一般都是绿色版的,下载一个tomcat7.0解开到指定的目录上即可
然后进入tomcat目录的bin文件夹,执行 sudo ./startup.sh即可完成启动
2.开机自动运行tomcat7.0
用Root权限进入,进入并修改/etc/rc.local
如下:
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
/media/D/Tools/tomcat7.0/bin/startup.sh
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ (红色)
exit 0
注:红色的是你开机要启动的项目
- 本文来自:Linux学习教程网
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。