标签:config文件 details ilo 查看端口 not disable core lin 亲测
nginx -s reload 有时候重新加载配置文件没有生效
[notice] 29410#0: signal process started
[emerg] 2999#0: bind() to 0.0.0.0:9091 failed (13: Permission denied)
如果出现此情况,根据报错内容分析
修改/etc/selinux/config文件中的SELINUX="" 为 disabled ,然后重启。
如果不想重启系统,使用命令setenforce 0
注:
setenforce 1 设置SELinux 成为enforcing模式
setenforce 0 设置SELinux 成为permissive模式
在lilo或者grub的启动参数中增加:selinux=0,也可以关闭selinux
1、查看端口是否加入seLinux允许的http端口
semanage port -l | grep http_port_t
2、添加端口
semanage port -a -t http_port_t -p tcp 8090
如果出现 semanage command not found错误就执行
yum -y install policycoreutils-python
参考链接 https://blog.csdn.net/ouyangtianhan/article/details/79815961
标签:config文件 details ilo 查看端口 not disable core lin 亲测
原文地址:https://www.cnblogs.com/feng-yue/p/14167691.html