码迷,mamicode.com
首页 > 数据库 > 详细

ubuntu mysql 使用

时间:2016-07-06 14:36:23      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:

环境:ubuntu 12.04.5    mysql-server-5.5
安装:sudo apt-get install mysql-server-5.5 (服务端 第一台虚拟机)
sudo apt-get install mysql-client-5.5  (客户端 第二台虚拟机)
客户端访问服务端遇到的问题:
(1)ERROR 2003 can‘t  content to mysql server
解决: sudo vi /etc/mysql/my.cnf    注释掉 #bind-address          = 127.0.0.1
(2)ubuntu下mysql服务的重启和关闭
解决:sudo service mysql   start|stop|restart      sudo /etc/init.d/mysql  start|stop|restart
(3)重启之后还有问题,ERROR 1130 host is not allowed to content this mysql server
解决:GRANT ALL PRIVILEGES ON *.* TO ‘root‘@‘%‘ IDENTIFIED BY ‘123456‘ WITH GRANT OPTION;

 

ubuntu mysql 使用

标签:

原文地址:http://www.cnblogs.com/pengcz/p/5646659.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!