`

centos nginx

 
阅读更多

1、CentOS 6,先执行:

rpm -ivh http://nginx.org/packages/centos/6/noarch/RPMS/nginx-release-centos-6-0.el6.ngx.noarch.rpm

2,查看yum的nginx信息

 []# yum info nginx

 Loaded plugins: fastestmirror

 Determining fastest mirrors

  * base: mirror.esocc.com

  * extras: mirror.esocc.com

  * updates: mirror.esocc.com

 base                                                     | 3.7 kB     00:00     

 base/primary_db                                          | 4.4 MB     00:28     

 extras                                                   | 3.5 kB     00:00     

 extras/primary_db                                        |  19 kB     00:00     

 nginx                                                    | 2.9 kB     00:00     

 nginx/primary_db                                         |  22 kB     00:00     

 updates                                                  | 3.5 kB     00:00     

 updates/primary_db                                       | 2.1 MB     00:10     

 Installed Packages

 Name        : nginx

 Arch        : x86_64

 Version     : 1.4.0

 Release     : 1.el6.ngx

 Size        : 874 k

 Repo        : installed

 From repo   : nginx

 Summary     : nginx is a high performance web server

 URL         : http://nginx.org/

 License     : 2-clause BSD-like license

 Description : nginx [engine x] is an HTTP and reverse proxy server, as well as

             : a mail proxy server

 

3,安装并启动nignx

[root@server ~]# yum install nginx

[root@server ~]# service nginx start

Starting nginx:                                            [  OK  ]

 

4,然后进入浏览器,输入http://192.168.0.161/测试,如果看到

 

Welcome to nginx!

 

If you see this page, the nginx web server is successfully installed and working. Further configuration is required.

For online documentation and support please refer to nginx.org.

Commercial support is available at nginx.com.

Thank you for using nginx.

 恭喜你,你成功了!

 

如果不能连接到nginx,原因很多,但是可以先检查 1,nginx服务是否真的起来了;2,linux服务器防火墙是否打开

 

在进行Nginx+Tomcat 负载均衡的时候遇到了这个权限问题,在error.log日志中,我们可以看到如下:

connect() to 127.0.0.1:8080 failed (13: Permission denied) while connecting to upstream,

经过一番检查以及google,应该是SeLinux的导致的。可以选择一些两种方式进行:
1、关闭SeLinux,可以查看以下文章:

CentOS下查看SeLinux状态及关闭SeLinux

 

查看SELinux状态:

1、/usr/sbin/sestatus -v      ##如果SELinux status参数为enabled即为开启状态

SELinux status:                 enabled

2、getenforce                 ##也可以用这个命令检查

关闭SELinux:

1、临时关闭(不用重启机器):

setenforce 0                  ##设置SELinux 成为permissive模式

##setenforce 1 设置SELinux 成为enforcing模式

2、修改配置文件需要重启机器:

修改/etc/selinux/config 文件

将SELINUX=enforcing改为SELINUX=disabled

重启机器即可

2、执行下面的命令

 

setsebool -P httpd_can_network_connect 1

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics