本文实例讲述了CentOS6.5系统简单安装与配置Nginx服务器的方法。分享给大家供大家参考,具体如下:
依赖包安装
在安装nginx前,需要确保系统安装了g++、gcc、openssl-devel、pcre-devel和zlib-devel软件。安装必须软件:
1
2
|
[root@admin /] #yum install gcc-c++ yum -y install zlib zlib-devel openssl openssl--devel pcrepcre-devel |
检查系统安装的Nginx:
1
|
[root@admin local ] # find -name nginx |
卸载原有的Nginx
1
|
[root@admin /] # yum remove nginx |
安装
将安装包文件上传到/usr/local中执行以下操作:
1
2
3
4
5
6
7
8
|
[root@admin local ] # cd /usr/local [root@admin local ] # tar -zxv -f nginx-1.2.6.tar.gz [root@admin local ] # rm -rf nginx-1.2.6.tar.gz [root@admin local ] # mv nginx-1.2.6 nginx [root@admin local ] # cd /usr/local/nginx [root@admin nginx] # ./configure --prefix=/usr/local/nginx [root@admin nginx] # make [root@admin nginx] # make install |
配置
1
2
3
4
5
6
|
#修改防火墙配置: [root@admin nginx-1.2.6] # vi + /etc/sysconfig/iptables #添加配置项 -A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -jACCEPT #重启防火墙 [root@admin nginx-1.2.6] # service iptables restart |
启动
1
2
3
4
5
|
#方法1 [root@admin nginx-1.2.6] # /usr/local/nginx/sbin/nginx -c/usr/local/nginx/conf/nginx.conf #方法2 [root@admin nginx-1.2.6] # cd /usr/local/nginx/sbin [root@admin sbin] # ./nginx |
停止
1
2
3
4
5
6
7
8
|
#查询nginx主进程号 ps -ef | grep nginx #停止进程 kill -QUIT 主进程号 #快速停止 kill -TERM 主进程号 #强制停止 pkill -9 nginx |
重启
1
|
[root@admin local ] #/usr/local/nginx/sbin/nginx -s reload |
测试
1
2
3
4
|
#测试端口 netstat Cna| grep 80 #浏览器中测试 http: //ip :80 |
希望本文所述对大家CentOS服务器配置有所帮助。
原文链接:https://blog.csdn.net/hanzheng260561728/article/details/51201093