mysql故障案例

來源:互聯網
上載者:User

標籤:localhost   show   where   pack   mysql   使用者   --   臨時   etc   

##錯誤: ERROR 1044 (42000): Access denied for user ‘root‘@‘%‘ to database ‘dede‘

mysql> create database dede;
ERROR 2006 (HY000): MySQL server has gone away
No connection. Trying to reconnect...
Connection id: 47299
Current database: NONE

Query OK, 1 row affected (0.00 sec)

mysql> grant all privileges on dede.* to ‘dede‘@‘localhost‘ identified by ‘dede123‘; ##授權時執行失敗
ERROR 2006 (HY000): MySQL server has gone away
No connection. Trying to reconnect...
Connection id: 47302
Current database: NONE

ERROR 1044 (42000): Access denied for user ‘root‘@‘%‘ to database ‘dede‘ ##拒絕訪問的使用者

解決:
mysql> select Grant_priv from mysql.user where Host=‘localhost‘; ##N代表沒有許可權
+------------+
| Grant_priv |
+------------+
| N |
| N |
| N |
+------------+
3 rows in set (0.00 sec)

mysql> select Grant_priv from mysql.user where Host=‘127.0.0.1‘;
+------------+
| Grant_priv |
+------------+
| Y |
+------------+
1 row in set (0.00 sec)

mysql> update mysql.user set Grant_priv=‘Y‘ where Host=‘localhost‘;
ERROR 2006 (HY000): MySQL server has gone away
No connection. Trying to reconnect...
Connection id: 47312
Current database: NONE

Query OK, 3 rows affected (0.01 sec)
Rows matched: 3 Changed: 3 Warnings: 0

mysql> select Grant_priv from mysql.user where Host=‘localhost‘;
+------------+
| Grant_priv |
+------------+
| Y |
| Y |
| Y |
+------------+
3 rows in set (0.00 sec)

mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

mysql> grant all privileges on dede.* to ‘dede‘@‘localhost‘ identified by ‘dede123‘;
ERROR 1044 (42000): Access denied for user ‘root‘@‘%‘ to database ‘dede‘

mysql> show variables like ‘read_only‘
-> ;
ERROR 2006 (HY000): MySQL server has gone away
No connection. Trying to reconnect...
Connection id: 47323
Current database: NONE

+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| read_only | OFF |
+---------------+-------+
1 row in set (0.00 sec)

mysql> show global variables like ‘max_allowed_packet‘; ##查看max_allowed_packet的值,預設是1MB
ERROR 2006 (HY000): MySQL server has gone away
No connection. Trying to reconnect...
Connection id: 47339
Current database: NONE

+--------------------+---------+
| Variable_name | Value |
+--------------------+---------+
| max_allowed_packet | 1048576 |
+--------------------+---------+
1 row in set (0.00 sec)
mysql> set global max_allowed_packet=1024102416; ##臨時修改max_allowed_packet值為16MB,重啟失效
ERROR 2006 (HY000): MySQL server has gone away
No connection. Trying to reconnect...
Connection id: 47341
Current database: NONE

Query OK, 0 rows affected (0.00 sec)

mysql> show global variables like ‘max_allowed_packet‘; ##查看.,臨時已生效
+--------------------+----------+
| Variable_name | Value |
+--------------------+----------+
| max_allowed_packet | 16777216 |
+--------------------+----------+
1 row in set (0.00 sec)

mysql> grant all privileges on dede.* to ‘dede‘@‘localhost‘ identified by ‘dede123‘; ###grant授權使用者成功
ERROR 2006 (HY000): MySQL server has gone away
No connection. Trying to reconnect...
Connection id: 47347
Current database: NONE

Query OK, 0 rows affected (0.00 sec)

mysql> exit
Bye

###永久修改參數
[[email protected] ~]# vim /etc/my.cnf
[mysqld]
max_allowed_packet = 16M

mysql 重啟生效

mysql故障案例

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.