`

盛网攻城师——mysql基本远程错误处理方法

阅读更多
​​​mysql是现在很常用的软件,以下是我收集到的一些关于远程失败时候的出来办法

欢迎加我联系2247597368

## 1. ERROR 2003(hy000):can't connect to mysql server on 'localhost' (10061)

原因是MySQL考虑到安全因素,默认配置只让从本地登录

打开 /etc/mysql/my.cnf 文件,找到 bind-address = 127.0.0.1 修改为 bind-address = 0.0.0.0

重启`mysql : sudo /etc/init.d/mysql restart`

再次连接,发生错误 1045

## 2. ERROR 1045 (28000): Access denied for user 'root'@'x.x.x.x' (using password: NO)

- 原因是没有给登录用户名设置远程主机登录的权限。还有种可能是你需要重设下密码....可能是授权操作引起这种后遗症..

- 在本地用 root 登录:

    ```

      # mysql -u root -p

    ```

    修改 MySQL 数据库中 user 表中 对应用户名的 Host 字段,将 localhost 改为 `%`

    ```

      mysql> use mysql;

      mysql> update user set Host = '%' where User = 'username';

    ```

## 3. 取回ROOT密码并设置远程登录

  - 重设 ROOT密码

    ```

      # mysqld_safe --skip-grant-tables &

      # mysql -u root mysql

      mysql> UPDATE user SET Password=PASSWORD('newpassword') where USER='root';

      mysql> FLUSH PRIVILEGES;

    ```

  - 设置 ROOT 远程连接 

    ```

      mysql> update user set host = '%'   where user='root';

    ```

  - Kill进程,重启 mysqld

    查看进程`PS -A | grep mysql `,可看到MYSQLD_SAFE与MYSQL进程,此时MYSQL可正常使用,不过查看参数,可看到`--skip-grant-tab`

输入 `kill -9 [pid]` 关闭进程

## 4. ERROR 1062 (23000): Duplicate entry '%-root' for key 'PRIMARY'

如果执行update语句时出现ERROR 1062 (23000): Duplicate entry '%-root' for key 'PRIMARY' 错误,说明有多个ROOT用户纪录在USER表中了.



`mysql> select host from user where user = 'root';`



查看一下host是否已经有了`%`这个值,有了就可以了.



`mysql> select host,user from user where user='root';`



```

+-----------------------+------+

| host                  | user |

+-----------------------+------+

| %                     | root |

| 127.0.0.1             | root |

| ::1                   | root |

| localhost.localdomain | root |

+-----------------------+------+

```

然后用ROOT用户登录更改用户账户的远程连接权限时.出现提示:ERROR 1044 (42000): Access denied for user ''@'localhost' to database 'mysql'。

##5. ERROR 1044 (42000): Access denied for user ''@'localhost' to database 'mysql'



是因为mysql数据库的user表里,存在用户名为空的账户即匿名账户,导致登录的时候是虽然用的是root,但实际是匿名登录的,通过错误提示里的''@'localhost'可以看出来,于是解决办法见

先关闭MYSQL进程..

然后



   `# mysqld_safe --skip-grant-table`



接着输入



  ```

   mysql -u root mysql

   mysql> delete from user where USER='';

   mysql> FLUSH PRIVILEGES;

  ```

如果出现  Starting demo from .. 后..先输入其它命令,再用mysql -u root mysql .它又会出现这个错误了.

然后KILL掉MYSQL进程,..重启正常的进程..

设置用户远程主机连接权限



  ```

    mysql> update user set host = '%'  where user='tester';

    mysql> FLUSH PRIVILEGES;

  ```

## 6. 设置用户与库的权限

但是在实际连接中,虽然可以连接,但是去没有所在库的权限,下面设置权限



  ```

    mysql> grant all privileges on tester.* to tester@'%' identified by '1234';

    mysql> FLUSH PRIVILEGES;

  ```

百分号两边要有单引号,否则语法错误

然后连接时,竟然提示1045 错误了,重设下密码试下.

  ```

    mysql> update mysql.user set password=password('XXX') where User="tester"

    mysql> flush privileges;
0
0
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics