当前位置:   article > 正文

linux下安装nginx,并且配置ssl证书,以及可能在编译时会产生的错误解决方式_linux nginx openssl证书错误

linux nginx openssl证书错误

1.在安装nginx前首先要确认系统中安装了gcc、pcre-devel、zlib-devel、openssl-devel。
安装命令

yum -y install gcc pcre-devel zlib-devel openssl openssl-devel
  • 1

nginx下载地址:https://nginx.org/download/

2.将下载好的nginx上传到你想要上传的目录

## 解压
tar -zxvf nginx-1.9.9.tar.gz
##进入nginx目录
cd nginx-1.9.9
## 配置1
./configure --prefix=/usr/local/nginx

## 如需配置https,则不要执行配置1
./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module

#编译安装
# make
# make install
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

在编译的时候可能会遇到的报错

安装nginx时出现In function ‘ngx_murmur_hash2’等错误

在这里插入图片描述

原因,是将警告当成了错误处理,打开/home/vagrant/nginx-1.11.2/objs/Makefile,
去掉CFLAGS中的-Werror
再重新make
-Wall 表示打开gcc的所有警告
-Werror,它要求gcc将所有的警告当成错误进行处理
  • 1
  • 2
  • 3
  • 4
  • 5

“src/os/unix/ngx_user.c:36:7: 错误:‘struct crypt_data’没有名为‘current_salt’的成员”

在这里插入图片描述

vi src/os/unix/ngx_user.c把它报错的这一句注释掉了
  • 1

在这里插入图片描述

有时候还可能会存在openssl版本太高,和nginx产生版本上的问题,那么就需要我们手动去安装了

1.卸载

 apt-get purge openssl
 rm -rf /etc/ssl

2.安装
 wget --no-check-certificate https://www.openssl.org/source/old/1.0.0/openssl-1.0.0.tar.gz
 tar xzf openssl-1.0.0.tar.gz
 cd openssl-1.0.0/
 ./config shared --prefix=/usr/local --openssldir=/usr/local/ssl
    make && make install
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/662148
推荐阅读
相关标签
  

闽ICP备14008679号