码迷,mamicode.com
首页 > 其他好文 > 详细

如何用命令行解决可执行文件的权限问题

时间:2014-07-17 15:04:14      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:style   color   使用   文件   io   问题   

在用命令行执行一个后台监控的可执行文件时出现了如下提示:

[root@promote 桌面]# nohup /etc/nginx_check.sh
nohup: 忽略输入并把输出追加到"nohup.out"
nohup: 无法运行命令"/etc/nginx_check.sh": 权限不够

或:

[root@promote 桌面]# nohup /etc/nginx_check.sh
nohup: ignoring input and appending output to `nohup.out‘
nohup: failed to run command `/etc/nginx_check.sh‘: Permission denied


此问题说明在执行可执行文件nginx_check.sh时没有权限,此时的解决方法是使用命令:chmod +x /etc/nginx_check.sh
次命令执行之后再执行 nohup /etc/nginx_check.sh & 此时执行结果如在下:
[root@ip-**-**-**-** tomcat6]# nohup: ignoring input and appending output to `nohup.out`

[1]+  Exit 2 nohup /etc/nginx_check.sh
[root@promote 桌面]#
此时nginx_check.sh文件已被执行成功!

 

如何用命令行解决可执行文件的权限问题,布布扣,bubuko.com

如何用命令行解决可执行文件的权限问题

标签:style   color   使用   文件   io   问题   

原文地址:http://blog.csdn.net/moqiang02/article/details/37902407

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