ubuntu安装mysql笔记

2015-08-28  本文已影响0人  wasw100

ubuntu安装mysql笔记

1.修改 /etc/mysql/my.cnf, 找到 bind-address 注释掉(也可以改为本机IP), 然后重启

```
sudo service mysql restart
```

2.允许远程访问, 使用 grant

```
grant all privileges on *.* to root@'%' identified by 'root'
```
上一篇 下一篇

猜你喜欢

热点阅读