美文网首页Linux运维
CentOS 6.9 Nginx 编译安装shell

CentOS 6.9 Nginx 编译安装shell

作者: 仞渣 | 来源:发表于2017-12-20 13:40 被阅读0次

CentOS 6.9 Nginx 编译安装shell

系统: CentOS 6.9 x64 mini
Nginx:  nginx1.12.2

安装目录 :  /www/server/nginx
源文件目录 :  /www/soft

这里没有创建系统服务,

#!/bin/sh

# Auther: Mr.G
#  QQ:825312600
# Web:  http://www.gaobiao.me
# Mail:cmaoge@126.com
# Crate Data:2017.12.08
# Edit Date:      2017.12.08
# Nginx  Install For CentOS
#

#首先安装必要的库
yum -y install gcc gcc-c++ automake autoconf libtool make pcre pcre-devel zlib zlib-devel openssl openssl-devel

#需要提前下载 pcre  zlib  openssl 并解压
tar zxvf pcre-8.41.tar.gz
tar zxvf zlib-1.2.11.tar.gz
tar zxvf openssl-1.1.0g.tar.gz

mkdir -p    /www/server/nginx
chmod -R 775 /www/server/nginx/
groupadd nginx
useradd -s /sbin/nologin -M -g nginx nginx
chown -R nginx:nginx /www/server/nginx

mkdir -p /www/server/nginx/temp/client_body
mkdir -p /www/server/nginx/temp/proxy
mkdir -p /www/server/nginx/temp/fastcgi
mkdir -p /www/server/nginx/temp/uwsgi
mkdir -p /www/server/nginx/temp/scgi

cd nginx-1.12.2

./configure --user=nginx --group=nginx \
--prefix=/www/server/nginx \
--sbin-path=/www/server/nginx/sbin/nginx \
--conf-path=/www/server/nginx/conf/nginx.conf \
--error-log-path=/www/server/nginx/logs/error.log \
--http-log-path=/www/server/nginx/logs/access.log \
--pid-path=/www/server/nginx/nginx.pid \
--lock-path=/www/server/nginx/nginx.lock \
--with-openssl=/www/soft/openssl-1.1.0g/ \
--with-pcre=/www/soft/pcre-8.41/ \
--with-zlib=/www/soft/zlib-1.2.11/ \

--with-http_ssl_module \
--with-http_v2_module \
--with-http_realip_module \
--with-http_gzip_static_module \
--with-http_stub_status_module \
--http-client-body-temp-path=/www/server/nginx/temp/client_body \
--http-proxy-temp-path=/www/server/nginx/temp/proxy \
--http-fastcgi-temp-path=/www/server/nginx/temp/fastcgi \
--http-uwsgi-temp-path=/www/server/nginx/temp/uwsgi \
--http-scgi-temp-path=/www/server/nginx/temp/scgi

make && make install

iptables -I INPUT -p tcp --dport 80 -j ACCEPT
iptables -I INPUT -p tcp --dport 443 -j ACCEPT

service iptables save
service iptables restart
service iptables status

#检测配置
./nginx -t

#停止nginx
./nginx -s stop

#启动 nginx
./nginx

#重新加载配置
./nginx -s  reload

相关文章

  • CentOS 6.9 Nginx 编译安装shell

    CentOS 6.9 Nginx 编译安装shell 系统: CentOS 6.9 x64 miniNginx: ...

  • nginx 安装

    安装前置条件 安装nginx http://www.01happy.com/centos-nginx-shell-...

  • 20171011 LAMP(二)

    CentOS 7.3环境LAMP源码编译安装WordPressCentOS 6.9环境LAMP源码编译安装Word...

  • Nginx的安装

    操作系统:CentOS 6.9nginx版本:1.14.0 1. 安装依赖环境 1.1 安装gcc 1.2 安装其...

  • git 自动安装脚本

    git自动安装脚本 git版本:2.9.5系统: CentOS 6.9脚本语言: Shell

  • 02-Nginx

    一、Nginx安装 本文使用centos服务器和nginx源码编译安装方式进行安装 1、编译环境安装 安装Ngin...

  • CentOS 6.9 PostgreSQL自动编译安装shell

    系统 : CentOS 6.9 x64 mini postgresql版本 : postgresql 9.5....

  • nginx yum 安装 for CentOS

    nginx yum 安装 for CentOS 编译自:http://nginx.org/en/linux_pac...

  • Gradle源码安装

    环境: 系统:CentOS 6.9 编译安装: 下载源码包: 地址:https://gradle.org/re...

  • Git源码安装

    环境 系统:CentOS 6.9软件:git-2.9.5.tar.gz 编译安装 下载源码包地址:https://...

网友评论

    本文标题:CentOS 6.9 Nginx 编译安装shell

    本文链接:https://www.haomeiwen.com/subject/hudgwxtx.html