在Ubuntu安装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
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ (红色)
注:红色的是你开机要启动的项目
查看更多关于在Ubuntu安装Tomcat7.0及开机自动运行 - Linux操作系统的详细内容...
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://www.haodehen.cn/did21694