Centos安装Nginx教程

一、Nginx简介

Nginx是一个web服务器,也可以用来做负载均衡及反向代理使用。

一、Nginx安装配置
  1. 下载Nginx及相关组件
    操作系统版本:CentOS Linux release 7.4.1708 (Core)
#  cat /etc/redhat-release 
CentOS Linux release 7.4.1708 (Core) 

下载相关组件

wget http://nginx.org/download/nginx-1.8.0.tar.gz
wget http://www.openssl.org/source/openssl-fips-2.0.10.tar.gz
wget http://zlib.net/zlib-1.2.11.tar.gz
wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.40.tar.gz

安装c++编译环境,如已安装可略过

yum install gcc-c++
  1. 安装Nginx及相关组件
    openssl安装
tar zxvf openssl-fips-2.0.10.tar.gz
cd openssl-fips-2.0.10
./config && make && make install

pcre安装

tar zxvf pcre-8.40.tar.gz
cd pcre-8.40
./configure && make && make install

zlib安装

tar zxvf zlib-1.2.11.tar.gz
cd zlib-1.2.11
./configure && make && make install

nginx安装

tar zxvf nginx-1.8.0.tar.gz
cd nginx-1.8.0
./configure && make && make install

3、启动Nginx
先找一下nginx安装到什么位置上了

# whereis nginx
nginx: /usr/sbin/nginx /usr/lib64/nginx /etc/nginx /usr/local/nginx /usr/share/nginx /usr/share/man/man3/nginx.3pm.gz /usr/share/man/man8/nginx.8.gz

进入nginx目录并启动

cd /usr/local/nginx 
./nginx -c /usr/local/nginx/conf/nginx.conf

你可能感兴趣的:(Centos安装Nginx教程)