码迷,mamicode.com
首页 > 系统相关 > 详细

ubuntu安装mysq 10061错误

时间:2014-12-30 19:20:21      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:ubuntu安装mysq 10061错误

Ubuntu Server安装mysql数据库,出错问题,软件登录报10061错误,

解决方法

1修改mysql配置文件(默认路径是/etc/mysql/my.cnf)

注释此条bind-address           = 127.0.0.1

2 进mysql数据库授权所有用户 grant all on *.* to ‘用户名‘@‘%‘ identified by ‘密码‘



Mysql 密码修改

mysql>use mysql;

      mysql>update user set password=password(‘new_password‘) where user=‘用户名‘;

      mysql>flush privileges;



密码修改 

mysql -u root

  mysql> use mysql;

  mysql> UPDATE user SET Password = PASSWORD(‘newpass‘) WHERE user = ‘root‘;

  mysql> FLUSH PRIVILEGES;


本文出自 “网络工程专题” 博客,请务必保留此出处http://houzhibo.blog.51cto.com/3103241/1597824

ubuntu安装mysq 10061错误

标签:ubuntu安装mysq 10061错误

原文地址:http://houzhibo.blog.51cto.com/3103241/1597824

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