Ubuntu安装mysql并配置远程访问
Posted Oh宝贝儿
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu安装mysql并配置远程访问相关的知识,希望对你有一定的参考价值。
1.安装mysql
apt-get install mysql-server mysql-client;
安装时会让你设置root密码,输入2次。
本地连接mysql测试:
mysql -uroot -p****(****是安装时你设置的root密码)
2.远程连接:
vim /etc/mysql/mysql.conf.d/mysqld.cnf 注释掉bind-address = 127.0.0.1
重启mysql:
/etc/init.d/mysql restart 或者 service mysql restart
3.登录mysql:
mysql -uroot -p****; show databases; use mysql; update user set host=‘%‘ where user=‘root‘ and host=‘localhost‘; #将host设置为%表示任何ip都能连接mysql,当然您也可以将host指定为某个ip flush privileges; #刷新权限表,使配置生效
以上是关于Ubuntu安装mysql并配置远程访问的主要内容,如果未能解决你的问题,请参考以下文章