以 root 身份启动 tomcat 的权限被拒绝

以 root 身份启动 tomcat 的权限被拒绝

我刚刚开始使用 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

为什么?

答案1

该文件/etc/init.d/tomcat7-supersite缺少执行权限。您需要运行

sudo chmod +x /etc/init.d/tomcat7-supersite

相关内容