https://my.oschina.net/ramboo/blog/223408
当然,首先要求是可以联网的CentOS系统,因为yum安装需要互联网连接。
1.为了追加 Nginx 的 yum 仓库,需要创建一个文件 /etc/yum.repos.d/Nginx.repo,并将下面的内容复制进去:
[Nginx]
name=Nginxrepo
baseurl=http://Nginx.org/packages/centos/$releasever/$basearch/
gpgcheck=0
enabled=1
2.编辑并保存/etc/yum.repos.d/Nginx.repo文件后,在命令行下执行
[root@localhost~]#yumlist|grepNginx
Nginx.i3861.4.7-1.el6.ngx@Nginx
Nginx-debug.i3861.4.7-1.el6.ngxNginx
会发现就是最新的稳定版
于是直接执行
yum-yinstallNginx
安装即可
3.这种安装和从源代码编译Nginx的安装,文件所处的位置不一样,安装完执行下面的命令
[root@localhost~]#find/-name*Nginx*
/etc/Nginx/Nginx.conf
[root@localhost~]#whereisNginx
Nginx:/usr/sbin/Nginx/etc/Nginx/usr/share/Nginx
你会发现主要文件安装到了/etc/Nginx下
接下来是启动Nginx服务,可以执行
[root@localhost~]#serviceNginxstart
正在启动Nginx:[确定]
接着查看Nginx的进程
[root@localhost~]#netstat-lntp|grepNginx
tcp000.0.0.0:800.0.0.0:*LISTEN7910/Nginx
[root@localhost~]#ps-ef|grepNginx
root79101023:43?00:00:00Nginx:masterprocess/usr/sbin/Nginx-c
/etc/Nginx/Nginx.conf
Nginx79127910023:43?00:00:00Nginx:workerprocess
root79422459023:52pts/100:00:00grepNginx
缺省是一个master,一个slave,可以在配置Nginx.conf文件里调整
4.设置开机自动启动
在centos6.5下测试了一下,不用设置
chkconfigNginxon
可以自行开机自动启动
原文链接:https://www.f2er.com/centos/380346.html