在linux下Nginx安装

安装make

yum -y install gcc automake autoconf libtool make

安装g++

yum install gcc gcc-c++

安装路径

cd /usr/local/src

安装pcre

cd /usr/local/src
wget https://ftp.pcre.org/pub/pcre/pcre-8.44.tar.gz 
tar -zxvf pcre-8.44.tar.gz
cd pcre-8.44
./configure
make
make install

安装zlib库

cd /usr/local/src
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

安装ssl

cd /usr/local/src
wget https://www.openssl.org/source/openssl-1.1.1g.tar.gz
tar -zxvf openssl-1.1.1g.tar.gz

安装nginx

我是安装在/usr/local/nginx/这个目录下所以需要先创建
mkdir nginx 目录

cd /usr/local/src
wget http://nginx.org/download/nginx-1.18.0.tar.gz
tar -zxvf nginx-1.18.0.tar.gz
cd nginx-1.18.0
 
./configure --sbin-path=/usr/local/nginx/nginx \
--conf-path=/usr/local/nginx/nginx.conf \
--pid-path=/usr/local/nginx/nginx.pid \
--with-http_gzip_static_module \
--with-http_stub_status_module \
--with-file-aio \
--with-http_realip_module \
--with-http_ssl_module \
--with-pcre=/usr/local/src/pcre-8.44 \
--with-zlib=/usr/local/src/zlib-1.2.11 \
--with-openssl=/usr/local/src/openssl-1.1.1g
 
make -j2
make install

查看80端口是否占用

sudo netstat -ntpl

可以用

sudo kill 

启动

sudo /usr/local/nginx/nginx

全局配置

vim /etc/profile最后加上
PATH=$PATH:/usr/local/nginx
export PATH

这个配置

立即生效命令

source /etc/profile

配置好就可以用
nginx -s start 命令
nginx -s stop

标签:

相关文章

2 条评论

  1. 老张博客

    直接用宝塔不方便嘛?

    1. 小黄
      @老张博客

      想深入了解下!୧(๑•̀⌄•́๑)૭

发表评论