我今天在腾讯云服务器上部署mysql8.0 ,系统是ubuntu20 ,由于版本太新,导致网络上很多解决方案都不可行,我花了很久才解决
在腾讯云控制台开放3306权限
- su命令提取管理员权限
- 利用apt-get安装,具体事宜参考其他博文,在安装过程中不要无脑确认,要看提示,直到可以root登录,
-
vim /etc/ssh/sshd_config
- 在文件最后添加:
KexAlgorithms diffie-hellman-group1-sha1,[email protected],ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha1
Ciphers 3des-cbc
可以解决navicat 关于ssh密钥连接错误
- 然后输入:
service sshd restart
- 登录mysql的root账号 解决root权限错误
5. use mysql
6. create user '用户名'@'%' identified with mysql_native_password by '密码' #防止加密方式与以前版本不兼容
7. alter user '用户名'@'%' identified by '密码' password expire never;
8. grant all privileges on *.* to '密码'@'%'
9. flush privileges #刷新权限