授权远程访问操作如下三步:
1.use mysql;
2.grant all privileges on *.* to 'root'@'%' identified by 'password';
3.flush privileges;
取消授权远程访问操作如下:
1.use mysql;
2.revoke all privileges on *.* from ……继续阅读 »
2年前 (2019-05-06) 1736浏览 0评论
5个赞
解决方案
vi /etc/ssh/sshd_config #在文件里面加入KexAlgorithms curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group14-sha1syste……继续阅读 »
2年前 (2019-03-12) 1211浏览 0评论
0个赞