1.为了追加 nginx 的 yum 仓库,需要创建一个文件 /etc/yum.repos.d/nginx.repo,并将下面的内容复制进去: [nginx] name=nginx repo baseurl=http://nginx.org/packages/centos/$releasever/$basearch/ gpgcheck=0 enabled=1 2.编辑并保存/etc/yum.repos.d/nginx.repo文件后,在命令行下执行 [[email protected] ~]# yum list | grep nginx nginx.i386 1.4.7-1.el6.ngx @nginx nginx-debug.i386 1.4.7-1.el6.ngx nginx 会发现就是最新的稳定版 于是直接执行 yum -y install nginx 安装即可 3.这种安装和从源代码编译Nginx的安装完全不一样,安装完执行下面的命令 [[email protected] ~]# find / -name *nginx* /etc/nginx/nginx.conf [[email protected] ~]# whereis nginx nginx: /usr/sbin/nginx /etc/nginx /usr/share/nginx 你会发现主要文件安装到了/etc/nginx下 接下来是启动Nginx服务,可以执行 [[email protected] ~]# service nginx start 正在启动 nginx: [确定] 启动成功。 接着 [[email protected] ~]# netstat -lntp | grep nginx tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 7910/nginx [[email protected] ~]# ps -ef | grep nginx tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 16775/nginx [[email protected] op]# ps -ef | grep nginx root 16663 4544 4 11:21 pts/0 00:00:03 find / -name *nginx* root 16775 1 0 11:22 ? 00:00:00 nginx: master process /usr/sbin/nginx -c /etc/nginx/nginx.conf nginx 16776 16775 0 11:22 ? 00:00:00 nginx: worker process root 16782 16723 0 11:23 pts/1 00:00:00 grep nginx缺省是一个master,一个slave,可以在配置nginx.conf文件里调整 4.设置开机自动启动 在centos6.5下测试了一下,不用设置 chkconfig nginx on 可以自行开机自动启动
停止
#查询nginx主进程号 ps -ef | grep nginx
#停止进程 kill -QUIT 主进程号
#快速停止 kill -TERM 主进程号
#强制停止 pkill -9 nginx
重启 [[email protected] local]
# /usr/local/nginx/sbin/nginx -s reload
时间: 2024-11-02 18:34:11