读书人

在Ubuntu装配Tomcat7.0及开机自动运行

发布时间: 2013-04-07 12:50:11 作者: rapoo

在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


注:红色的是你开机要启动的项目







读书人网 >系统运维

热点推荐