91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

mysql故障案例

發布時間:2020-06-07 09:15:20 來源:網絡 閱讀:780 作者:趙如俊 欄目:MySQL數據庫

##錯誤: 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

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

mysql 重啟生效

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

商南县| 电白县| 台南县| 闵行区| 鱼台县| 丰原市| 荔波县| 巴南区| 巨鹿县| 广安市| 容城县| 延川县| 海安县| 万宁市| 新昌县| 上饶县| 扎囊县| 南康市| 宜昌市| 盘山县| 神农架林区| 察隅县| 金昌市| 和硕县| 甘泉县| 隆昌县| 临邑县| 南安市| 阳城县| 汉中市| 从化市| 黑龙江省| 金溪县| 泰顺县| 新平| 南漳县| 邯郸市| 夹江县| 磐安县| 镇原县| 吉木乃县|