這篇文章主要介紹“CentOS7如何安裝Nginx并配置自動(dòng)啟動(dòng)”的相關(guān)知識(shí),小編通過實(shí)際案例向大家展示操作過程,操作方法簡(jiǎn)單快捷,實(shí)用性強(qiáng),希望這篇“CentOS7如何安裝Nginx并配置自動(dòng)啟動(dòng)”文章能幫助大家解決問題。
目前累計(jì)服務(wù)客戶成百上千,積累了豐富的產(chǎn)品開發(fā)及服務(wù)經(jīng)驗(yàn)。以網(wǎng)站設(shè)計(jì)水平和技術(shù)實(shí)力,樹立企業(yè)形象,為客戶提供成都做網(wǎng)站、成都網(wǎng)站建設(shè)、成都外貿(mào)網(wǎng)站建設(shè)、網(wǎng)站策劃、網(wǎng)頁設(shè)計(jì)、網(wǎng)絡(luò)營(yíng)銷、VI設(shè)計(jì)、網(wǎng)站改版、漏洞修補(bǔ)等服務(wù)。創(chuàng)新互聯(lián)建站始終以務(wù)實(shí)、誠(chéng)信為根本,不斷創(chuàng)新和提高建站品質(zhì),通過對(duì)領(lǐng)先技術(shù)的掌握、對(duì)創(chuàng)意設(shè)計(jì)的研究、對(duì)客戶形象的視覺傳遞、對(duì)應(yīng)用系統(tǒng)的結(jié)合,為客戶提供更好的一站式互聯(lián)網(wǎng)解決方案,攜手廣大客戶,共同發(fā)展進(jìn)步。1、官網(wǎng)下載安裝包
選擇適合linux的版本,這里選擇新的版本,下載到本地后上傳到服務(wù)器或者centos下直接wget命令下載。
切換到/usr/local目錄,下載軟件包
# cd /usr/local # wget http://nginx.org/download/nginx-1.11.5.tar.gz
2、安裝nginx
先執(zhí)行以下命令,安裝nginx依賴庫,如果缺少依賴庫,可能會(huì)安裝失敗,具體可以參考文章后面的錯(cuò)誤提示信息。
# yum install gcc-c++ # yum install pcre # yum install pcre-devel # yum install zlib # yum install zlib-devel # yum install openssl # yum install openssl-devel
解壓安裝包
# tar -zxvf nginx-1.11.5.tar.gz
nginx被解壓到了/usr/local/nginx-1.11.5 目錄下(不要把壓縮包解壓到/usr/local/nginx目錄下,或者將解壓后的目錄重命名為nginx,因?yàn)閚ginx會(huì)默認(rèn)安裝到/usr/local/nginx目錄下),切換到nginx-1.11.5/目錄
# cd /usr/local/nginx-1.11.5/
執(zhí)行# ./configure
# ./configure
該操作會(huì)檢測(cè)當(dāng)前系統(tǒng)環(huán)境,以確保能成功安裝nginx,執(zhí)行該操作后可能會(huì)出現(xiàn)以下幾種提示:
checking for os
+ linux 3.10.0-123.el7.x86_64 x86_64
checking for c compiler ... not found
./configure: error: c compiler cc is not found
如果出現(xiàn)以上錯(cuò)誤提示信息,執(zhí)行yum install gcc-c++安裝gcc,
./configure: error: the http rewrite module requires the pcre library.
you can either disable the module by using --without-http_rewrite_module
option, or install the pcre library into the system, or build the pcre library
statically from the source with nginx by using --with-pcre=<path> option.
如果出現(xiàn)上面提示,表示缺少pcre庫
./configure: error: the http gzip module requires the zlib library.
you can either disable the module by using --without-http_gzip_module
option, or install the zlib library into the system, or build the zlib library
statically from the source with nginx by using --with-zlib=<path> option.
如果出現(xiàn)以上提示,表示缺少zlib庫
如果沒有出現(xiàn)./configure: error提示,表示當(dāng)前環(huán)境可以安裝nginx,執(zhí)行make和make install編譯nginx
# make # make install
沒有出錯(cuò)的話,表示nginx已經(jīng)成功安裝完成,默認(rèn)安裝位置為/usr/local/nginx,之前的/usr/local/nginx-1.11.5/可以刪除掉了。
如果出現(xiàn)cp: 'conf/koi-win' and '/usr/local/nginx/conf/koi-win' are the same file,可能是你把安裝包解壓到了/usr/local/nginx目錄,解決辦法是將該目錄重命名為其他名稱后再執(zhí)行make,make install.
3、配置nginx開機(jī)啟動(dòng)
切換到/lib/systemd/system/目錄,創(chuàng)建nginx.service文件vim nginx.service
# cd /lib/systemd/system/ # vim nginx.service
文件內(nèi)容如下:
[unit] description=nginx after=network.target [service] type=forking execstart=/usr/local/nginx/sbin/nginx execreload=/usr/local/nginx/sbin/nginx reload execstop=/usr/local/nginx/sbin/nginx quit privatetmp=true [install] wantedby=multi-user.target
退出并保存文件,執(zhí)行systemctl enable nginx.service使nginx開機(jī)啟動(dòng)
# systemctl enable nginx.service
systemctl start nginx.service 啟動(dòng)nginx
systemctl stop nginx.service 結(jié)束nginx
systemctl restart nginx.service 重啟nginx
4、驗(yàn)證是否安裝成功
輸入http://服務(wù)器ip/ 如果能看到nginx的界面,就表示安裝成功了
關(guān)于“CentOS7如何安裝Nginx并配置自動(dòng)啟動(dòng)”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí),可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,小編每天都會(huì)為大家更新不同的知識(shí)點(diǎn)。
新聞名稱:CentOS7如何安裝Nginx并配置自動(dòng)啟動(dòng)-創(chuàng)新互聯(lián)
鏈接分享:http://m.rwnh.cn/article4/iieoe.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站營(yíng)銷、移動(dòng)網(wǎng)站建設(shè)、微信公眾號(hào)、手機(jī)網(wǎng)站建設(shè)、網(wǎng)站維護(hù)、云服務(wù)器
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容