linux系统 nginx服务器 更换阿里云证书

微信上是空白页面。网页上访问也是提示。跳过提示继续访问,网页是正常的。那么就不是系统出错了。是证书过期了啊。

linux系统 nginx服务器 更换阿里云证书_第1张图片

头儿,给了个证书给我,压缩包。解压后是这个

linux系统 nginx服务器 更换阿里云证书_第2张图片

那么这个要放哪?要修改微信公众号设置吗?明显不是,因为网页版的也提示错误了。那么只能是修改服务器了。

参考:https://jingyan.baidu.com/article/fdffd1f8619481f3e98ca196.html

 

[root@clue360 sbin]# ps -ef|grep nginx
root      1227   730  0 09:49 pts/1    00:00:00 grep --color=auto nginx
root     15087     1  0 Mar29 ?        00:00:00 nginx: master process /usr/sbin/nginx
nginx    15088 15087  0 Mar29 ?        00:00:36 nginx: worker process
[root@clue360 sbin]# nginx -V
nginx version: nginx/1.12.2
built by gcc 4.8.5 20150623 (Red Hat 4.8.5-16) (GCC)
built with OpenSSL 1.0.2k-fips  26 Jan 2017
TLS SNI support enabled
configure arguments: --prefix=/usr/share/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib64/nginx/modules --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --http-client-body-temp-path=/var/lib/nginx/tmp/client_body --http-proxy-temp-path=/var/lib/nginx/tmp/proxy --http-fastcgi-temp-path=/var/lib/nginx/tmp/fastcgi --http-uwsgi-temp-path=/var/lib/nginx/tmp/uwsgi --http-scgi-temp-path=/var/lib/nginx/tmp/scgi --pid-path=/run/nginx.pid --lock-path=/run/lock/subsys/nginx --user=nginx --group=nginx --with-file-aio --with-ipv6 --with-http_auth_request_module --with-http_ssl_module --with-http_v2_module --with-http_realip_module --with-http_addition_module --with-http_xslt_module=dynamic --with-http_image_filter_module=dynamic --with-http_geoip_module=dynamic --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-http_degradation_module --with-http_slice_module --with-http_stub_status_module --with-http_perl_module=dynamic --with-mail=dynamic --with-mail_ssl_module --with-pcre --with-pcre-jit --with-stream=dynamic --with-stream_ssl_module --with-google_perftools_module --with-debug --with-cc-opt='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m64 -mtune=generic' --with-ld-opt='-Wl,-z,relro -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -Wl,-E'
[root@clue360 sbin]# /usr/sbin/nginx -s reload
ps -ef|grep nginx 查看当前服务器是不是nginx,明显是。命令是/usr/sbin/nginx
nginx -V

上面是命令,但是不是nginx的安装目录,那么这个就是查看安装目录了。

配置文件在--conf-path=/etc/nginx/nginx.conf

那么nginx就在/ect/nginx了

/usr/sbin/nginx -s reload 这个是nginx重启命令。更换完证书就可以重启了。

linux系统 nginx服务器 更换阿里云证书_第3张图片nginx这两个文件,和给的证书里面的两个文件好像啊。就是这里。替换这两个文件就ok了。注意名字一定要一样。不一样。重启的时候也会提示你要一样。哈哈。

 

你可能感兴趣的:(其它)