您好,登錄后才能下訂單哦!
#nginx是一款功能強(qiáng)大、開源軟件
1、系統(tǒng)版本和內(nèi)核版本
[root@node06 ~]# uname -r
3.10.0-327.el7.x86_64
[root@node06 ~]# cat /etc/redhat-release
CentOS Linux release 7.2.1511 (Core)
[root@node06 ~]#
2、軟件包版本 nginx-1.11.10.tar.gz (包的地址在介紹里)
3、安裝依賴
[root@nginx ~]# yum install -y gcc pcre-devel openssl-devel
4、創(chuàng)建nginx啟動(dòng)用戶、需要的目錄并解壓安裝包。
[root@nginx ~]# useradd nginx
[root@nginx ~]# mkdir -p /usr、local/nginx/{client,proxy,fastcgi,uwsgi,scgi}
[root@nginx ~]# tar zxf nginx-1.11.10.tar.gz
[root@nginx ~]# cd nginx-1.11.10/
5、配置nginx的安裝參數(shù)和編譯
[root@nginx nginx-1.11.4]# ./configure \
--prefix=/usr/local/nginx \
--user=nginx \
--group=nginx \
--with-http_ssl_module \
--with-http_flv_module \
--with-http_stub_status_module \
--with-http_gzip_static_module \
--http-client-body-temp-path=/usr/local/nginx/client \
--http-proxy-temp-path=/usr/local/nginx/proxy \
--http-fastcgi-temp-path=/usr/local/nginx/fastcgi \
--http-uwsgi-temp-path=/usr/local/nginx/uwsgi \
--http-scgi-temp-path=/usr/local/nginx/scgi \
--with-pcre \
--with-file-aio \
--with-http_secure_link_module
[root@nginx nginx-1.11.10]# make && make install
6、驗(yàn)證安裝是否成功
[root@nginx ~]#cd /usr/local/nginx/
[root@nginx ~]#ls sbin/
nginx 證明安裝成功
7、啟動(dòng)nginx并設(shè)置開機(jī)自啟
[root@nginx ~]# /usr/local/nginx/sbin/nginx
[root@nginx ~]# vim /etc/rc.d/rc.local
/usr/local/nginx/sbin/nginx
[root@nginx ~]# chmod a+x /etc/rc.d/rc.local -------> centos7.2需要這一步
8、驗(yàn)證nginx是否正常啟動(dòng)
打開網(wǎng)頁輸入 http://<ip地址>
能看到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)容。