Nginx在centos7环境下快速部署


作者:空白

1. 安装nginx

  • 安装前言
以下安装步骤将在目录/usr/local下进行
  • 安装gcc gcc-c++
yum install -y gcc gcc-c++
  • 安装PCRE库
cd /usr/local/
wget http://jaist.dl.sourceforge.net/project/pcre/pcre/8.33/pcre-8.33.tar.gz
tar -zxvf pcre-8.33.tar.gz
cd pcre-8.33
./configure
make && make install
  • 安装SSL库
cd /usr/local/
wget https://www.openssl.org/source/old/1.0.1/openssl-1.0.1j.tar.gz
tar -zxvf openssl-1.0.1j.tar.gz
cd openssl-1.0.1j
./config
make && make install
  • 安装zlib库
cd /usr/local/
wget http://zlib.net/zlib-1.2.11.tar.gz
tar -zxvf zlib-1.2.11.tar.gz
cd zlib-1.2.11
./configure
make && make install
  • 安装nginx(注意是1.8.0版本)
cd /usr/local/
wget http://nginx.org/download/nginx-1.8.0.tar.gz
tar -zxvf nginx-1.8.0.tar.gz
cd nginx-1.8.0 
./configure --user=nobody --group=nobody --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_gzip_static_module --with-http_realip_module --with-http_sub_module --with-http_ssl_module --with-pcre=/usr/local/pcre-8.33 --with-zlib=/usr/local/zlib-1.2.11 --with-openssl=/usr/local/openssl-1.0.1j

make && make install

2. nginx常用命令

  • 启动nginx服务
/usr/local/nginx/sbin/nginx
  • 重启nginx服务
/usr/local/nginx/sbin/nginx –s reload
  • 强制关闭nginx服务
pkill nginx
  • 停止nginx服务
/usr/local/nginx/sbin/nginx –s stop

关注共图社,有更多惊喜。


更多科技话题文章,请关注公众号“前沿科技bot“。

alt

扫码或搜索:前沿科技
发送 290992
即可立即永久解锁本站全部文章