Hunter的大杂烩 技术学习笔记

2019-12-09

Python 记录log中文报错IOError: [Errno 0] Error

Filed under: 技术话题 — hunter @ 11:56 pm
  1.  WINDOWS下命令行执行报错,可以输入以下2条命令解决
chcp 65001
set PYTHONIOENCODING=utf-8
  1. 写日志时报错,说明变量有些字符是utf8,可以用下面方法解决

logging.error(“some log:” + unicode(input, ‘utf-8’))

2019-12-01

免费APACHE SSL证书安装

Filed under: 技术话题 — hunter @ 3:41 pm

参考:
https://letsencrypt.org/zh-cn/getting-started/
https://www.cnblogs.com/stulzq/p/8628163.html


yum -y install yum-utils
yum-config-manager --enable rhui-REGION-rhel-server-extras rhui-REGION-rhel-server-optional
yum install certbot python2-certbot-apache
certbot certonly -d 你的域名 -d *.你的域名 --manual --preferred-challenges dns

(more…)

Powered by WordPress