欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

手动安装nginx

程序员文章站 2024-03-17 12:59:52
...
  1. 准备环境,安装依赖包
yum -y install gcc zlib zlib-devel pcre-devel openssl openssl-devel
  1. 下载对应版本nginx
wget http://nginx.org/download/nginx-1.13.7.tar.gz
  1. 解压、编译,加入了stream等支持;
tar -zxvf nginx-1.17.7.tar.gz
cd nginx-1.17.7

./configure  --prefix=/usr/local/nginx/ --user=nginx --group=nginx --with-http_stub_status_module --with-http_ssl_module --with-http_realip_module --with-http_flv_module  --with-http_gzip_static_module  --with-stream
make
make install
  1. 检查
    安装安成后,可以进入安装目录,输入以下命令检查配置文件
nginx -t

发现出现一个问题
[emerg]: getpwnam(“nginx”) failed
真实原因是:没有安装nginx用户导致的无法启动
useradd -s /sbin/nologin -M nginx

  1. 一些命令
nginx -h #帮助
nginx -v #显示版本
nginx -V #显示版本和配置信息
nginx -t #测试配置
nginx -q #测试配置时,只输出错误信息
nginx -s stop #停止服务器
nginx -s reload #重新加载配置
相关标签: CentOS探索