摘要: 配置Mysql远程连接的方法 grant all privileges on *.* to 'root'@'%' identified by '123456' with grant option; flush privileges; 貌似在mysql8中会发生错误 Duplicate entry ' 阅读全文
posted @ 2021-06-25 18:39 x-dai 阅读(60) 评论(0) 推荐(0)
摘要: class SSHClient(): def __init__(self,host=None,port=22,username=None,password=None): self.host = host self.port = port self.username = username self.p 阅读全文
posted @ 2021-06-25 11:51 x-dai 阅读(879) 评论(0) 推荐(1)