博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Nginx 配置遇到问题
阅读量:5131 次
发布时间:2019-06-13

本文共 736 字,大约阅读时间需要 2 分钟。

connect() to 10.2.20.170:1009 failed (13: Permission denied) while connecting to upstream

现这个错误是因为selinux, linux安全增强的补丁导致的。

解决方法是禁用selinux的安全增强, 可以使用命令 setenforce 0来临时禁用,或者通过修改配置文件/etc/sysconfig/selinux 添加 SELINUX=disabled来永久禁用

然后重启 reboot

# This file controls the state of SELinux on the system.# SELINUX= can take one of these three values:#     enforcing - SELinux security policy is enforced.#     permissive - SELinux prints warnings instead of enforcing.#     disabled - No SELinux policy is loaded.SELINUX=disabled# SELINUXTYPE= can take one of these two values:#     targeted - Targeted processes are protected,#     mls - Multi Level Security protection.SELINUXTYPE=targeted

  

转载于:https://www.cnblogs.com/zery/p/6699373.html

你可能感兴趣的文章
一点对后缀自动机的理解 及模板
查看>>
EF架构学习第一章
查看>>
架构之美随笔四------最终用户应用架构
查看>>
小程序踩坑(三)-上拉加载和下拉刷新篇
查看>>
mysql backup
查看>>
《Pro Ogre 3D Programming》读书笔记 之 第十章 布告板与粒子 第二部分 (转)
查看>>
文件字符输入输出流
查看>>
sed——linux下对文本当控制操作(替换,追加)
查看>>
编程之美 set 7 求数组中的最长递增子序列
查看>>
vbscript获取本机的ip地址和mac地址
查看>>
int[]里数的个数怎么由输入决定?-----动态数组。
查看>>
什么是bypass(转载)
查看>>
Css-calc()翻车归纳
查看>>
Filter:过滤器
查看>>
Spring之WEB模块
查看>>
C#三种判断字符是否为汉字的方法
查看>>
发现Mac OS X的llvm-gcc也是支持intrin函数的
查看>>
2015年创业中遇到的技术问题:121-130
查看>>
微信小程序学习笔记-3-问题
查看>>
js 将json字符串转换为json对象的方法解析
查看>>