Nginx的安裝 點擊進入 "Ngunx官網下載穩定版本頁面" 找到 Pre Built Packages for Stable version ,選擇與自己系統相關的操作,如 CentOS 7 ,則選擇 To set up the yum repository for RHEL/CentOS, c ...
Nginx的安裝
- 點擊進入 Ngunx官網下載穩定版本頁面
找到 Pre-Built Packages for Stable version,選擇與自己系統相關的操作,如 CentOS 7,則選擇
To set up the yum repository for RHEL/CentOS, create the file named /etc/yum.repos.d/nginx.repo with the following contents:
[nginx]
name=nginx repo
baseurl=http://nginx.org/packages/OS/OSRELEASE/$basearch/
gpgcheck=0
enabled=1
Replace “OS” with “rhel” or “centos”, depending on the distribution used, and “OSRELEASE” with “6” or “7”, for 6.x or 7.x versions, respectively.安裝Nginx
[root@localhost ~]# cd /etc/yum.repos.d
[root@localhost yum.repos.d]# vim nginx.repo
# nginx.repo
# 需要對上面的源信息進行更改 OS=>centos OSRELEASE=>7
[nginx]
name=nginx repo
baseurl=http://nginx.org/packages/centos/7/$basearch/
gpgcheck=0
enabled=1
# 保存退出
# 列出Nginx相關
[root@localhost yum.repos.d]# yum list | grep nginx
# 安裝Nginx
[root@localhost yum.repos.d]# yum install nginx
# 查看Nginx版本信息 (小寫v)
[root@localhost yum.repos.d]# nginx -v
# 查看Nginx相關參數信息 (大寫V)
[root@localhost yum.repos.d]# nginx -V
# 啟動Nginx
[root@localhost yum.repos.d]# service nginx start
# 或者
[root@localhost yum.repos.d]# systemctl start nginx.service
# 停止Nginx
[root@localhost yum.repos.d]# service nginx stop
# 或者
[root@localhost yum.repos.d]# systemctl stop nginx.service
# 重啟Nginx
[root@localhost yum.repos.d]# service nginx restart
# 或者
[root@localhost yum.repos.d]# systemctl restart nginx.service
# 重載Nginx配置,平滑重啟
[root@localhost yum.repos.d]# service nginx reload
# 或者
[root@localhost yum.repos.d]# systemctl reload nginx.service