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

时间:2023-03-09 17:56:05
在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

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