系统相关
首页 > 系统相关> > centos 7 源码安装nginx-1.19.10

centos 7 源码安装nginx-1.19.10

作者:互联网

1、下载源码包

wget http://nginx.org/download/nginx-1.19.10.tar.gz

tar -zxvf nginx-1.19.10.tar.gz

cd nginx-1.19.10

2、安装依赖类库

yum install gcc-c++  pcre pcre-devel zlib zlib-devel openssl openssl-devel

3、编译nginx

./configure --user=www --group=www --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_v2_module --with-http_gzip_static_module  --with-http_sub_module

http_stub_status_module 作用:监控nginx运行状态

http_sub_module  作用:用于替换字符串

http_ssl_module 作用:支持https访问

http_gzip_static_module 作用:实现静态压缩功能,节约带宽

4、安装

make && make install

5、启动

/usr/local/nginx/sbin/nginx

tip:错误

​​​​​​​nginx: [emerg] getpwnam("www") failed

因为linux 64系统中安装nginx时如果出现错误:nginx: [emerg] getpwnam(“www”) failed in ........
解决方法1:
      在nginx.conf中 把user www www;的注释去掉,在这句前面加#即可 
解决方法2:
      错误的原因是没有创建www这个用户,应该在服务器系统中添加www用户组和用户www,如下命令:

#/usr/sbin/groupadd -f www
#/usr/sbin/useradd -g www www

 

标签:10,www,http,centos,--,module,1.19,nginx,源码
来源: https://blog.csdn.net/u014297851/article/details/115712899