1、安装MySQL
sudo apt-get install mysql-server
sudo apt-get install mysql-client
sudo apt-get install libmysqlclient-dev
2、更改默认密码
sudo cat /etc/mysql/debian.cnf
图有‘user=debian-sys-maint’,即为自动配置的默认用户;‘password=ol9uVJAxu9L1AzOa’,即为自动配置的密码。
mysql -u debian-sys-maint -p // 用户名以自己的配置文件为准
提示输入密码,这里要输入的就是上一步的‘password=ol9uVJAxu9L1AzOa’(密码以自己的配置文件为准)。
use mysql;
// 下一行,密码改为了yourpassword,可以设置成其他的
update mysql.user set authentication_string=password('yourpassword') where user='root' and Host ='localhost';
update user set plugin="mysql_native_password";
flush privileges;
quit;
sudo service mysql restart mysql -u root -p 新密码
3、配置远程访问
- 编辑配置文件,注释掉bind-address = 127.0.0.1:
sudo vi /etc/mysql/mysql.conf.d/mysqld.cnf
grant all on *.* to root@'%' identified by '你的密码' with grant option; flush privileges;
4、重启服务
sudo service mysql restart
现在可在Navicat软件上远程连接MySQL数据库。
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。