ubuntu中如何安装MySQL数据库及允许远程连接
1.安装
sudo apt-get install mysql-server mysql-client
然后根据提示设置root用户的密码
2.管理服务
- 开启
sudo service mysql start
- 关闭
sudo service mysql stop
- 重启
sudo service mysql restart
3.允许远程连接
- 找到mysql配置文件,进行修改
sudo vi /etc/mysql/mysql.conf.d/mysqld.cnf
将bind-address=127.0.0.1注释
- 登录mysql
mysql -uroot -p
然后输入root账号密码
- 依次运行如下命令
grant all privileges on *.* to 'root'@'%' identified by '安装时设置的密码' with grant option;
flush privileges;
- 退出:
exit
- 重启mysql