数据库
首页 > 数据库> > 在阿里云 Ubuntu 安装Mysql 并用Navicate连接

在阿里云 Ubuntu 安装Mysql 并用Navicate连接

作者:互联网

目录

安装mysql

修改mysql配置文件

修改mysql root账号

修改阿里云安全组设置

使用navicate登录mysql


安装mysql

apt-get update;

apt-get install mysql-server;

apt-get install mysql-client;

修改mysql配置文件

vi /etc/mysql/mysql.conf.d/mysqld.cnf

将 

bind-address = 127.0.0.1 

修改为

bind-address = 0.0.0.0

保存文件,重启服务

service mysql restart

修改mysql root账号

进入/etc/mysql/查看文件debian.cnf

cat /etc/mysql/debian.cnf

用文件中的user和password进入mysql

mysql -u[user] -p[password]

执行SQL:

#修改root账号的host值
update user set host="%",plugin="mysql_native_password" where user="root";

#修改密码
alter user 'root'@'%' identified by '[密码]';

flush privileges;

修改阿里云安全组设置

使用navicate登录mysql

 

标签:Ubuntu,Mysql,etc,apt,修改,user,mysql,root,Navicate
来源: https://blog.csdn.net/qq_23356521/article/details/118943837