我刚开始使用CentOS.
我安装Java
yum install java-1.7.0-openjdk-devel
$useradd supersite
下载tomcat:
$wget http://apache.mirror.anlx.net/tomcat/tomcat-7/v7.0.42/bin/apache-tomcat-7.0.42.zip $unzip apache-tomcat-7.0.42.zip -d tomcat7
创建的服务配置:
$cd /etc/init.d $edit tomcat7-supersite
但是,当我尝试以root用户身份运行时(我看到我是root @myip)
service tomcat7-supersite start
我明白了:
env: /etc/init.d/tomcat7-supersite: Permission denied
为什么?
解决方法
文件/etc/init.d/tomcat7-supersite缺少执行权限.你需要跑
sudo chmod +x /etc/init.d/tomcat7-supersite