Ubuntu 中的tomcat自启动方法

[size=large][color=darkred][b]Ubuntu 中的tomcat自启动方法[/b][/color][/size]

创建tomcat自启动文件:
[quote]sudo touch /etc/init.d/tomcat6[/quote]
在文件中加入如下代码:
#!/bin/bash
# Tomcat auto-start
#
# description: Auto-starts tomcat
# processname: tomcat
# pidfile: /var/run/tomcat.pid

export JAVA_HOME=/usr/lib/jvm/java-6-sun
export CATALINA_HOME=/srv/apache-tomcat

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


其中JAVA_HOME 和CATALINA_HOME指向tomcat和jdk的路径

然后执行一下命令
[quote]sudo chmod 755 /etc/init.d/tomcat6[/quote]
最后执行:
[quote]sudo ln -s /etc/init.d/tomcat6 /etc/rc1.d/K99tomcat
sudo ln -s /etc/init.d/tomcat6/etc/rc2.d/S99tomcat
sudo /etc/init.d/tomcat6 start[/quote]


到此你的tomcat已经启动!

输入 [quote]ps -ef |grep java [/quote]看一下吧!


本文参考:[url]http://marshal.easymorse.com/archives/1198[/url]
[url]http://www.howtogeek.com/howto/linux/installing-tomcat-6-on-ubuntu/[/url]
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值