Below you will find pages that utilize the taxonomy term “certbot”
November 19, 2017
centos 下安装 certbot 常见问题
"上一篇( https://blog.haohtml.com/archives/17422)我们介绍了centos下安装certbot的方法,但有时间服务器环境不一样,总会遇到一些问题,常见问题如下:\ncentos7.5下安装certbot常见问题\n一、出错”ImportError: ‘pyOpenSSL’ module missing required functionality. Try upgrading to v0.14 or newer.“ 解决办法:\nsudo pip uninstall pyOpenssl sudo pip install pyOpenSSL==0.14.0 查看版本:\npip show pyOpenssl 一、出错信息为“certbot AttributeError: ‘module’ object has no attribute ‘SSL_ST_INIT’”\n解决办法:\npip uninstall pyOpenSSL pip install pyOpenSSL==16.2.0 "
June 20, 2017
使用Let’s Encrypt 给网站加 HTTPS
"2017.03.27更新:/usr/bin/letsencrypt 被 /usr/bin/certbot 替代,更新文章中所用到的命令。参考: Archlinux Let’s Encrypt Wiki\nLet’s Encrypt 证书生成不需要手动进行,官方推荐 certbot 这套自动化工具来实现。3步轻松搞定:\n下载安装 certbot (Let’s Encrypt项目的自动化工具) 创建配置文件 执行证书自动化生成命令 环境: centos7 64位 nginx\n一、安装certbot\n$yum -y install certbot #检查安装是否成功\n$certbot --help 如果安装过程中遇到python的问题,解决办法请参考: https://blog.haohtml.com/archives/17491 二、生成域名证书\n这里使用的域名为 blog.haohtml.com, 网站根目录为 /data/wwwroot/haohtml/blog\n#为一个已经存在的站点生成证书文件,一个证书可以多个域名共用,一次也可以生成多个域名谈证书(内容放在了同一个文件里),命令格式 …"