以下操作都是在root账户下进行的。系统版本是CentOS7
我之前在nginx的官方文档中看到使用yum安装php方法。觉得如果有嫌编译麻烦的。可以尝试使用yum快速安装nginx。减少搭建环境之苦。
比如我的系统是CentOS7,那么将以下内容粘贴进入/etc/yum.repos.d/nginx.repo
文件中:
[nginx]
name=nginx repo
baseurl=http://nginx.org/packages/centos/7/$basearch/
gpgcheck=0
enabled=1
yum install nginx -y
我们在安装之后,为了能够正常运行,我们一般会禁止Nginx进行更新。因为在yum更新了Nginx之后,Nginx会自动重启。这对于我们来说是没有必要的,所以我们可以屏蔽更新。我们可以这样,将下列指定放到你的/etc/yum.conf
文件中:
exclude=nginx
一般在生产环境,我们都是禁用更新的。所以说,这里只是作为一个参考。 我们需要执行的命令就是:
yum update nginx
注意: 在使用 yum 更新之后,Nginx会自动重启。
systemctl start nginx
systemctl restart nginx
nginx -t
systemctl reload nginx
systemctl stop nginx
systemctl enable nginx
systemctl diasble nginx
上面实现了Nginx的安装,命令管理,屏蔽更新以及更新。希望能对大家有所帮助。
原文:https://www.cnblogs.com/JesseWeng/p/14240584.html