码迷,mamicode.com
首页 > 其他好文 > 详细

亲测完美centos7部署Nginx1.6.3(附一键安装nginx1.13.8脚本)

时间:2019-04-29 22:37:01      阅读:384      评论:0      收藏:0      [点我收藏+]

标签:++   sbin   curl   mod   一键安装nginx   Opens   复制   bin   相关   

1. 创建预备环境

[root@192 ~]# test -f /services/current_apps || mkdir /services/current_apps 2&> /dev/null
[root@192 ~]# test -f /services/download_soft_v || mkdir /services/download_soft_v 2&> /dev/null
[root@192 ~]# yum -y install pcre pcre-devel openssl-devel openssl gcc gcc-c++
[root@192 ~]# cd /services/download_soft_v/
[root@192 download_soft_v]# wget 104.225.234.20/nginx-1.13.8.tar.gz
[root@192 download_soft_v]# tar xf nginx-1.13.8.tar.gz
[root@192 download_soft_v]# cd nginx-1.13.8/
[root@192 nginx-1.13.8]# useradd nginx -s /sbin/nologin -M

2. 编译安装相关

[root@192 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
[root@192 nginx-1.13.8]#make && make install

6.软连接并测试和启动

[root@192 nginx-1.13.8]# ln -s /services/current_apps/nginx-1.13.8/ /usr/local/nginx
[root@192 nginx-1.13.8]# echo "liuli test ok" > /usr/local/nginx/html/index.html
[root@192 nginx-1.13.8]# /usr/local/nginx/sbin/nginx
[root@192 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脚本)

标签:++   sbin   curl   mod   一键安装nginx   Opens   复制   bin   相关   

原文地址:https://blog.51cto.com/popli3/2386901

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!