栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 系统运维 > 运维 > Linux

awesome项目总结

Linux 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

awesome项目总结

参考

廖雪峰python实战-awesome
awesome代码仓库

遇到的问题
  • mysql8.0+版本以上修改/设置密码
修改用户密码:  (8.0.4前)
use mysql;
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '新密码';
FLUSH PRIVILEGES;

更多参考:
mysql修改密码

  • python3 fabric3 模块实现密钥登录, 服务器只能用 -i key的方式登录
from fabric.api import *

env.hosts = ['192.168.181.200']            # 指定 hosts 远程主机
env.key_filename = ['/path/to/id_rsa']     # 指定你的私钥文件
env.user = 'username'                      # 指定用户名

def touchfile():                           # 随便创建一个任务,用来测试
    run('touch /tmp/www.txt')
  • fab build的时候报错: SSHException: Incompatible ssh peer (no acceptable kex algorithm)
    因为ssh 6.7以上屏蔽不安全算法,配置即可解决, 在/etc/ssh/sshd_conf结尾加上如下:

KexAlgorithms curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha1,diffie-hellman-group-exchange-sha1,diffie-hellman-group1-sha1

  • supervisor报错: Error: .ini file does not include supervisord section
    在supervisor配置文件/etc/supervisor/conf.d/<你的配置文件>下添加如下:
[supervisord]
nodaemon=true

[supervisorctl]
  • supervisorctl报错: supervisor unix:///var/run/supervisor.sock no such file。 ps: 不要去kill supervisor进程
sudo touch /var/run/supervisor.sock
sudo chmod 777 /var/run/supervisor.sock
sudo service supervisor restart
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/335418.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号