1. 程式人生 > >Nginx入門(一):在centos上安裝nginx

Nginx入門(一):在centos上安裝nginx

CenterOS7安裝Nginx

===================

參考:https://www.xuliangwei.com/bgx/972.html

nginx官網下載地址:http://nginx.org/en/linux_packages.html

===================

1.安裝編譯工具及庫檔案

yum install -y gcc gcc-c++ autoconf pcre pcre-devel make automake wget httpd-tools vim tree

2.關閉防火牆

[root@izwz9ev02los7q1d71e7muz /]# systemctl disable firewalld

3.確認防火牆狀態

[root@izwz9ev02los7q1d71e7muz /]# systemctl status firewalld

4.關閉selinux

[root@izwz9ev02los7q1d71e7muz /]# setenforce 0

5.確認selinux狀態

[root@izwz9ev02los7q1d71e7muz /]# getenforce

6.建立目錄資料夾

[root@izwz9ev02los7q1d71e7muz /]# mkdir /soft/{code,logs,package/src} -p

7.確認目錄情況

[root@izwz9ev02los7q1d71e7muz /]# tree /soft/

8.配置nginx的yum源

[root@izwz9ev02los7q1d71e7muz /]# vim /etc/yum.repos.d/nginx.repo
[nginx]
name=nginx repo
#注意:此處centeros版本根據自己實際情況配置
baseurl=http://nginx.org/packages/centos/7/$basearch/
gpgcheck=0
enabled=1

10.安裝nginx

yum install nginx -y

11.安裝成功,檢視版本

[root@iZwz9ev02los7q1d71e7muZ ~]# nginx -v