码迷,mamicode.com
首页 > 系统相关 > 详细

Ubuntu 12.04下解决Tomcat自启动问题

时间:2016-05-12 09:11:06      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:

当我们安装好Tomcat使用后发现,每次启动都需要在终端中手动键入sudo /var/tomcat/bin/startup.sh,那么我们怎么解决这个问题呢 

http://hovertree.com/menu/ubuntu/

以下是我的解决方案: 

1.首先打开终端,输入su,接着输入ROOT的密码获得ROOT权限。进入/etc文件夹(使用cd /etc命令) 

2.打开rc.local文件(在/etc目录下使用vi rc.local命令) 

3.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. 

/var/tomcat/bin/startup.sh 

exit 0 

4.红色内容为我们手动添加的内容,这里指的是tomcat启动项,那么如何更改呢,首先键入A 进入INSERT模式,移动光标到红色位置输入准确路径,按ESC退出INSERT模式,光标移动到行尾,键入:wq保存文件 

至此,我们已经解决这个问题,重启Ubuntu我们发现已经可以自动访问Tomcat下的内容了

推荐:http://www.cnblogs.com/roucheng/p/ubuntu.html

Ubuntu 12.04下解决Tomcat自启动问题

标签:

原文地址:http://www.cnblogs.com/roucheng/p/tomcat.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!