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

前端之家收集整理的这篇文章主要介绍了linux – 权限被拒绝以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

我从here复制了文件.

但是,当我尝试以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
原文链接:https://www.f2er.com/linux/398808.html

猜你在找的Linux相关文章