共计 503 个字符,预计需要花费 2 分钟才能阅读完成。
No1. Ubuntu 下 MySQL 安装
sudo apt-get install mysql-server mysql-client
记得 root 密码别忘了。
No2. 验证 Mysql 安装
sudo service mysql restart
No3. 设置 Mysql 远程 IP 访问
/etc/MySQL/my.cnf 找到 bind-address = 127.0.0.1,注释掉
No4. 设置字符集、排序规则等。
打开 /etc/mysql/my.cnf, 在 [mysqld] 后添加 character-set-server=utf8
No5. 设置 root 远程访问
mysql -u root -p
->GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'password' WITH GRANT OPTION;
->FLUSH PRIVILEGES;
重启 mysql 服务即可生效!
更多 Ubuntu 相关信息见Ubuntu 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=2
本文永久更新链接地址:http://www.linuxidc.com/Linux/2016-11/137085.htm
正文完
星哥玩云-微信公众号