您好,登錄后才能下訂單哦!
1.創(chuàng)建目錄,將安裝包下載到指定目錄中
mkdir -p /home/download/tools
cd /home/download/tools
執(zhí)行這條命令下載安裝包:
wget http://nginx.org/download/nginx-1.10.3.tar.gz
2.解決安裝包依賴問(wèn)題
復(fù)制執(zhí)行即可
yum install pcre-devel openssl-devel -y
3.檢查依賴包是否安裝完成
rpm -qa |egrep "pcre|openssl"
查看返回結(jié)果
pcre-7.8-7.el6.x86_64
openssl-1.0.1e-57.el6.x86_64
pcre-devel-7.8-7.el6.x86_64
openssl098e-0.9.8e-20.el6.centos.1.x86_64
openssl-devel-1.0.1e-57.el6.x86_64
4.解壓 編譯安裝
tar xf nginx-1.10.3.tar.gz
cd nginx-1.10.3
5.添加nginx運(yùn)行用戶 www
useradd -s /sbin/nologin -M www
id www 進(jìn)行查看
6.編譯
./configure (配置 編譯參數(shù)) make(編譯) make install(復(fù)制 創(chuàng)建目錄 文件 )
./configure --prefix=/application/nginx-1.10.3 --user=www --group=www --with-http_stub_status_module --with-http_ssl_module
7.make&&make install&&echo $?
創(chuàng)建編譯,返回值如果最終為0 則為執(zhí)行成功.
8.創(chuàng)建軟連接,啟動(dòng)nginx 并進(jìn)行測(cè)試
a. ln -s /application/nginx-1.10.3/ /application/nginx
b. /application/nginx/sbin/nginx
c. lsof -i:80
查看80端口是否被監(jiān)聽(tīng).
9.如果出現(xiàn)無(wú)法編譯安裝請(qǐng)執(zhí)行以下命令
yum install gcc gcc-c++ automake autoconf -y
10.使用自己配置的外網(wǎng)地址進(jìn)行測(cè)試.
在瀏覽器中(不要用win10自帶瀏覽器,自己在測(cè)的時(shí)候不成功.)使用谷歌,搜狗,360,火狐瀏覽器都可以.輸入配置好的外網(wǎng)ip回車(chē).
出現(xiàn)如下頁(yè)面表示安裝成功.
If you see this page, the nginx web server is successfully installed and working. Further configuration is required.
For online documentation and support please refer to nginx.org.
Commercial support is available at nginx.com.
Thank you for using nginx.
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。