您好,登錄后才能下訂單哦!
一、安裝支持庫(兩種方式)
快速安裝支持庫
yum install pcre-devel pcre openssl-devel
編譯安裝支持庫(建議)
安裝PCRE(正則)
wget tar zxvf pcre-8.42.tar.gz cd pcre-8.42/ ./configure --prefix=/usr/local/pcre make && make install ln -sv /usr/local/pcre/lib/libpcre.so.1 /usr/lib64/libpcre.so.1 ln -sv /usr/local/pcre/lib/libpcre.so.1.2.9 /usr/lib64/libpcre.so.1.2.9
安裝OPENSSL(ssl)
wget https://www.openssl.org/source/openssl-1.1.0i.tar.gz tar zxvf openssl-1.1.0i.tar.gz cd openssl-1.1.0i/ yum install perl ./config --prefix=/usr/local/openssl make make install
安裝zlib(Gzip依賴)
wget http://www.zlib.net/zlib-1.2.11.tar.gz tar zxvf zlib-1.2.11.tar.gz cd zlib-1.2.11/ ./configure --prefix=/usr/local/zlib make make install
二、Nginx安裝:
下載Nginx源碼包:
wget http://nginx.org/download/nginx-1.14.0.tar.gz
創(chuàng)建用戶:
groupadd www useradd -g www www -s /sbin/nologin
創(chuàng)建目錄:
mkdir -p /data/{www,logs,mysql} chmod +w /data/www chown -R www:www /data/www/
編譯安裝Nginx:
tar zxvf nginx-1.14.0.tar.gz cd nginx-1.14.0/ ./configure --prefix=/usr/local/nginx \ --user=www --group=www \ --with-http_ssl_module \ --with-http_realip_module \ --with-http_sub_module \ --with-http_gzip_static_module \ --with-http_stub_status_module \ --with-http_v2_module \ --with-openssl=/usr/local/src/openssl-1.1.0i \ --with-zlib=/usr/local/src/zlib-1.2.11 \ --with-pcre=/usr/local/src/pcre-8.42 \ --with-stream make && make install
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。