Centos7安裝nginx

記錄乾貨。。。

1、下載、解壓

在centos進入到本身要保存nginx壓縮包的位置,再到nginx下載頁面,找到html

1574755162(1)

對着nginx-1.16.1鼠標右擊,選擇複製連接地址;nginx

centos輸入如下命令下載:redis

我下載到了/usr/local/software目錄下。centos

用如下命令解壓瀏覽器

tar -zxvf nginx-1.16.1.tar.gz

解壓後用ls查看:服務器

image

cd nginx-1.16.1/

設置編譯後的目錄及檢查tcp

./configure --prefix=/usr/local/software/nginx
開始編譯
make && make install
返回上一目錄,查看
cd ..
ls

image

nginx就是編譯後的目錄了。ui

2、配置環境變量

用Notepad++鏈接服務器(個人安裝redis中有教),找到並打開 /etc/profile 文件,在最後加入:阿里雲

#set nginx 環境
export PATH=$PATH:/usr/local/software/nginx/sbin

使用 source /etc/profile 使配置文件生效。rest

3、開放端口

firewall-cmd --permanent --add-port=80/tcp  #添加80端口
systemctl restart firewalld.service  #重啓防火牆
firewall-cmd --list-ports  #查看開放的端口

開放端口後,外面才能鏈接,阿里雲買的服務器記得在服務器管理面板的防火牆也要開放(80就不用了,設置其餘端口就要)。

4、經常使用命令

nginx #啓動
nginx -s stop    #中止服務
nginx -s quit    #退出服務 (等待處理完成退出)
nginx -s reopen    #從新打開日誌文件
nginx -s reload    #從新加載配置文件

用nginx啓動後,打開瀏覽器輸入服務器ip地址和端口(80能夠省略):

image

出現上面頁面就說明成功了。。。

相關文章
相關標籤/搜索