问题:机房服务器断电进行消防检查,检查完后服务器远程登录不了去机房查看服务器,服务器启动时出现了
welcome to emergency mode. ...... journalctl -xb...
.....
Press enter for maintenance
(or type Control-D to continue): --- Ctrl+d继续启动服务器。
按下Ctrl+...
阅读全文…
res类型是bytes时
1data = json.loads(res)
会报终端错误
1TypeError: the JSON object must be str, not 'bytes'
解决办法
1data = json.loads(res.decode('utf-8'))
好像这个错误和python版本有关系,python3.6不需要decode不会报错,python3.5会报这个...
阅读全文…