访问nginx 遇到 Permission denied 的解决方案

发布于:2018-6-15 14:43 作者:admin 浏览:3149 分类:错误汇总

connect() to 127.0.0.1:9000 failed (13: Permission denied) while connecting to upstream, client: 127.0.0.1, server:

 

#setsebool -P httpd_can_network_connect 1

 

临时关闭SELinux:不需要重新启动机器
#setenforce 0 

 

关闭SELinux:然后重启机器

#vi  /etc/selinux/config
将SELINUX=enforcing 改为 SELINUX=disabled

 

 

标签: nginx SELinux

0

解决memcached不能远程访问的问题

发布于:2014-1-10 9:35 作者:admin 浏览:4613 分类:错误汇总

一直 本地连接memcached 并且使用没有问题,但是远程连接的时候出现问题。

 

当我启动时使用了此命令:

memcached -d -m 32 -l 127.0.0.1 -p 11211 -u root

发现了问题存在的原因:我在启动时使用了 -l 参数,它指定了连接到memcached服务器的IP地址为 127.0.0.1。换句话说只有本地才能连接到memcached。既然找到了问题的原因,那么解决自然就不是问题了,启动时使用这个命令:

//usr/bin/memcached -d -m 32 -p 11211 -u root
去掉了 -l  参数,这样在没有指定连接到memcached服务器的IP地址时就允许任一IP来连接。问题终于解决了

标签: memcached

0

Ignoring query to other database

发布于:2014-1-7 9:22 作者:admin 浏览:1492 分类:错误汇总
mysql>show databases; 
 
错误提示 Ignoring query to other database   

原因在登录mysql的时候,-uroot中的用户少写了u  


错误如下代码 
[root@pc01 ~]# mysql -root -p  Enter password:  
正确如下代码 
[root@pc01 ~]# mysql -uroot -p  Enter password:  

标签: mysql

0

rm: cannot remove `/mnt/nfs': Device or resource busy

发布于:2013-12-31 10:54 作者:admin 浏览:8309 分类:错误汇总
[root@localhost /]# rm -rf /mnt/nfs/
rm: cannot remove `/mnt/nfs': Device or resource busy

解决方法:
[root@localhost /]# umount /mnt/nfs/

[root@localhost /]# rm -rf /mnt/nfs/
删除成功

 

 

 


 

标签: nfs

0

You need a C++ compiler for C++ support

发布于:2013-12-11 14:15 作者:admin 浏览:1391 分类:错误汇总
解决方法:
yum install gcc-c++

0

configure: error: newly created file is older than distributed files!

发布于:2013-12-11 13:57 作者:admin 浏览:1372 分类:错误汇总

在linux下安装软件包的时候,有时候提示

configure: error: newly created file is older than distributed files!
Check your system clock

出现此编译错误,请检查你的系统时间是否设置有误。。。

查看硬件日期时间

hwclock -show

linux是每隔一段时间将系统时间写入 硬件bois的 如果刚设置完了就关机,开机后时间还是等于没有设置

# date -s 991128

Sun Nov 28 00:00:00 CST 1999

实例:设置时间伟2008年8月8号12:00

# date -s "2008-08-08 12:00:00″

修改完后,记得输入:

clock -w

把系统时间写入CMOS即可.

标签: clock

0