0
  • 当我的 ubuntu 服务器启动时,tomcat7 不运行(我无法打开 localhost:8080)
  • 当我 ssh 进入我的服务器时,我可以打开 localhost:8080
  • 当我关闭我的 ssh 连接时,tomcat 再次停止工作

我在 init.d 中有这个启动脚本:

export JAVA_HOME=/usr/lib/jvm/java-7-oracle
export CATALINA_HOME=/home/knowroaming/apache-tomcat-7.0.34
/etc/init.d/tomcat7.sh start

我在 /etc/(rc1.d 到 rc5.d)目录中也有这个脚本的符号链接。有任何想法吗?

4

1 回答 1

2

以下内容来自 howtogeek.com,与 tomcat 6 相关,但我已将说明与 tomcat7 一起使用

http://www.howtogeek.com/howto/linux/installing-tomcat-6-on-ubuntu/

自动启动

要让tomcat在我们开机时自动启动,可以添加一个脚本让它自动启动和关机。

sudo vi /etc/init.d/tomcat

现在粘贴以下内容:

# Tomcat auto-start
#
# description: Auto-starts tomcat
# processname: tomcat
# pidfile: /var/run/tomcat.pid

export JAVA_HOME=/usr/lib/jvm/java-6-sun

case $1 in
start)
        sh /usr/local/tomcat/bin/startup.sh
        ;;
stop)  
        sh /usr/local/tomcat/bin/shutdown.sh
        ;;
restart)
        sh /usr/local/tomcat/bin/shutdown.sh
        sh /usr/local/tomcat/bin/startup.sh
        ;;
esac   
exit 0

您需要通过运行 chmod 命令使脚本可执行:

sudo chmod 755 /etc/init.d/tomcat

最后一步实际上是使用符号链接将此脚本链接到启动文件夹。执行这两个命令,我们就可以上路了。

sudo ln -s /etc/init.d/tomcat /etc/rc1.d/K99tomcat
sudo ln -s /etc/init.d/tomcat /etc/rc2.d/S99tomcat

Tomcat 现在应该已完全安装并可以运行。

于 2013-03-11T14:00:47.620 回答