1. 程式人生 > >親測完美centos7部署Nginx1.6.3(附一鍵安裝nginx1.13.8腳本)

親測完美centos7部署Nginx1.6.3(附一鍵安裝nginx1.13.8腳本)

親測 group 安裝 centos oot roo down 測試 eve

1. 創建預備環境

[[email protected] ~]# test -f /services/current_apps || mkdir /services/current_apps 2&> /dev/null
[[email protected] ~]# test -f /services/download_soft_v || mkdir /services/download_soft_v 2&> /dev/null
[[email protected] ~]# yum -y install pcre pcre-devel openssl-devel openssl gcc gcc-c++

[[email protected] ~]# cd /services/download_soft_v/
[[email protected] download_soft_v]# wget 104.225.234.20/nginx-1.13.8.tar.gz
[[email protected] download_soft_v]# tar xf nginx-1.13.8.tar.gz
[[email protected] download_soft_v]# cd nginx-1.13.8/
[[email protected] nginx-1.13.8]# useradd nginx -s /sbin/nologin -M

2. 編譯安裝相關

[[email protected] nginx-1.13.8]# ./configure --user=nginx --group=nginx --prefix=/services/current_apps/nginx-1.13.8 --with-http_stub_status_module --with-http_ssl_module
[[email protected] nginx-1.13.8]#make && make install

6.軟連接並測試和啟動

[[email protected] nginx-1.13.8]# ln -s /services/current_apps/nginx-1.13.8/ /usr/local/nginx

[[email protected] nginx-1.13.8]# echo "liuli test ok" > /usr/local/nginx/html/index.html
[[email protected] nginx-1.13.8]# /usr/local/nginx/sbin/nginx
[[email protected] nginx-1.13.8]# curl 127.0.0.1

附:

一鍵安裝版(復制以下代碼到命令行後--->運行sh install_nginx.sh)

cat >>install_nginx.sh << EOF
test -f /services/current_apps || mkdir /services/current_apps 2&> /dev/null
test -f /services/download_soft_v || mkdir /services/download_soft_v 2&> /dev/null
yum -y install pcre pcre-devel openssl-devel openssl gcc gcc-c++
cd /services/download_soft_v/
wget 104.225.234.20/nginx-1.13.8.tar.gz
tar xf nginx-1.13.8.tar.gz
cd nginx-1.13.8/
useradd nginx -s /sbin/nologin -M
./configure --user=nginx --group=nginx --prefix=/services/current_apps/nginx-1.13.8 --with-http_stub_status_module --with-http_ssl_module
make && make install
ln -s /services/current_apps/nginx-1.13.8/ /usr/local/nginx
echo "liuli test ok" > /usr/local/nginx/html/index.html
/usr/local/nginx/sbin/nginx
curl 127.0.0.1
EOF

親測完美centos7部署Nginx1.6.3(附一鍵安裝nginx1.13.8腳本)