Mysql創建數據庫,mysql 重建注冊_mysql 重建帳號

 2023-12-06 阅读 29 评论 0

摘要:mysql 因某些原因帳戶被破壞。需要重建 一、模擬刪除破壞用戶: lixiaomeng:~ # mysql -uroot -proot mysql> use mysql; mysql> select user,host from user; +----------+------------+ | user ? ? | host ? ? ? | +----------+-----------

mysql 因某些原因帳戶被破壞。需要重建 一、模擬刪除破壞用戶: lixiaomeng:~ # mysql -uroot -proot mysql> use mysql; mysql> select user,host from user; +----------+------------+ | user ? ? | host ? ? ? | +----------+------------+ | lixiaomeng| % ? ? ? ? ?| | lixiaomeng| 127.0.0.1 ?| | root ? ? | 127.0.0.1 ?| | root ? ? | ::1 ? ? ? ?| | root ? ? | lixiaomeng | | lixiaomeng | localhost ?| | root ? ? | localhost ?| | lixiaomeng | lixiaomeng ?| +----------+------------+ 8 rows in set (0.00 sec) mysql> delete from user where user='root'; Query OK, 4 rows affected (0.00 sec) mysql> select user,host from user; +----------+-----------+ | user ? ? | host ? ? ?| +----------+-----------+ | lixiaomeng | % ? ? ? ? | | lixiaomeng | 127.0.0.1 | | lixiaomeng | localhost | | lixiaomeng | lixiaomeng | +----------+-----------+ 4 rows in set (0.00 sec) mysql> lixiaomeng:~ # service mysql restart Shutting down MySQL.. ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? done Starting MySQL. ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? done lixiaomeng:~ # mysql -uroot -proot Warning: Using a password on the command line interface can be insecure. ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES) lixiaomeng:~ # ? 二、重建本地用戶: lixiaomeng:/etc # vi my.cnf? [mysqld] skip-grant-tables lixiaomeng:~ # service mysql restart Shutting down MySQL.. ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? done Starting MySQL. ? ? ? ? ? ? ? ? ? ? lixiaomeng:~ # mysql -uroot -p Enter password:? mysql> insert into mysql.user (host, user, password,ssl_cipher,x509_issuer,x509_subject) values ('localhost', 'root', password('root'),'','',''); Query OK, 1 row affected (0.00 sec) mysql> flush privileges; Query OK, 0 rows affected (0.00 sec) mysql> grant all privileges on *.* to 'root'@'localhost' identified by 'root' with grant option; Query OK, 0 rows affected (0.00 sec) mysql> lixiaomeng:/etc # vi my.cnf? [mysqld] #skip-grant-tables lixiaomeng:~ # service mysql restart Shutting down MySQL.. ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? done Starting MySQL. ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? done 三、通過本地用戶重建遠程用戶: lixiaomeng:~ # mysql -uroot -proot mysql> select user,host from mysql.user; +----------+-----------+ | user ? ? | host ? ? ?| +----------+-----------+ | lixiaomeng | % ? ? ? ? | | lixiaomeng | 127.0.0.1 | | lixiaomeng | localhost | | root ? ? | localhost | | lixiaomeng | lixiaomeng | +----------+-----------+ 5 rows in set (0.00 sec) mysql> ?grant all privileges on *.* to 'root'@'%' identified by 'root' with grant option; Query OK, 0 rows affected (0.00 sec) mysql> select user,host from mysql.user; +----------+-----------+ | user ? ? | host ? ? ?| +----------+-----------+ | lixiaomeng | % ? ? ? ? | | root ? ? | % ? ? ? ? | | lixiaomeng | 127.0.0.1 | | lixiaomeng | localhost | | root ? ? | localhost | | lixiaomeng| lixiaomeng| +----------+-----------+ 6 rows in set (0.00 sec)

版权声明:本站所有资料均为网友推荐收集整理而来,仅供学习和研究交流使用。

原文链接:https://hbdhgg.com/2/188508.html

发表评论:

本站为非赢利网站,部分文章来源或改编自互联网及其他公众平台,主要目的在于分享信息,版权归原作者所有,内容仅供读者参考,如有侵权请联系我们删除!

Copyright © 2022 匯編語言學習筆記 Inc. 保留所有权利。

底部版权信息