在用命令行执行一个后台监控的可执行文件时出现了如下提示:
1 | [root@promote 桌面] |
或:
1 | [root@promote 桌面]# nohup /etc/nginx_check.sh |
此问题说明在执行可执行文件nginx_check.sh时没有权限,此时的解决方法是使用命令:chmod +x /etc/nginx_check.sh
此命令执行之后再执行 nohup /etc/nginx_check.sh & 此时执行结果如下:
1 | [root@ip-**-**-**-** tomcat6]# nohup: ignoring input and appending output to `nohup.out` |
此时nginx_check.sh文件已被执行成功!