美文网首页
nginx安装

nginx安装

作者: jimy123 | 来源:发表于2023-01-22 16:14 被阅读0次

  • 安装编译工具及库文件:
yum -y install make zlib zlib-devel gcc-c++ libtool openssl openssl-devel
  • 创建临时目录:
mkdir -p /var/temp/nginx
  • 创建服务器目录:
mkdir -p /www/xiaozhushe/nginx
cd /www/xiaozhushe/nginx
  • 下载:
wget http://nginx.org/download/nginx-1.22.1.tar.gz
  • 解压:
tar -zxvf nginx-1.22.1.tar.gz
  • 进入nginx所在目录:
cd nginx-1.22.1
  • 编译安装:
./configure \
--prefix=/usr/local/nginx \
--pid-path=/var/run/nginx.pid \
--lock-path=/var/lock/nginx.lock \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/var/log/nginx/access.log \
--with-http_gzip_static_module \
--http-client-body-temp-path=/var/temp/nginx/client \
--http-proxy-temp-path=/var/temp/nginx/proxy \
--http-fastcgi-temp-path=/var/temp/nginx/fastgi \
--http-uwsgi-temp-path=/var/temp/nginx/uwsgi \
--http-scgi-temp-path=/var/temp/nginx/scgi \
--with-http_stub_status_module \
--with-http_ssl_module \
--with-http_stub_status_module
  • make编译:
make
  • 安装:
make install
  • 进入sbin目录启动nginx:
cd /usr/local/nginx/sbin

启动:
./nginx
停止:
./nginx -s stop
重新加载:
./nginx -s reload
  • 配置环境变量:
vim /etc/profile
在文件的尾部追加:
export NGINX_HOME=/usr/local/nginx
export PATH=$NGINX_HOME/sbin:$PATH
重启配置文件:
source /etc/profile

查看版本:
nginx -v
查看配置:
nginx -V


nginx配置.png

相关文章

网友评论

      本文标题:nginx安装

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