您好,登錄后才能下訂單哦!
#nginx是一款功能強大、開源軟件
1、系統版本和內核版本
[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、創建nginx啟動用戶、需要的目錄并解壓安裝包。
[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的安裝參數和編譯
[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、驗證安裝是否成功
[root@nginx ~]#cd /usr/local/nginx/
[root@nginx ~]#ls sbin/
nginx 證明安裝成功
7、啟動nginx并設置開機自啟
[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、驗證nginx是否正常啟動
打開網頁輸入 http://<ip地址>
能看到nginx提供的頁面表示安裝成功
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。