$ mysql -u root -p
登录并显示数据库时:+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
| game_data |
| test |
+--------------------+
然后我尝试创建一个新用户,并发现PRIVILEGES出了问题。
所以我删除了新用户,我想我意外删除了'root'和'Admin'。
然后我尝试再次创建'root',但是授予所有特权时访问被拒绝错误。
mysql> CREATE USER 'root'@'localhost' IDENTIFIED BY 'password';
mysql> grant all privileges on *.* to 'root'@'localhost' identified by 'password' with grant option;
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
如果我再次使用
$ mysql -u root -p
登录到MySQL并显示数据库,则+--------------------+
| Database |
+--------------------+
| information_schema |
+--------------------+
/>
所有其他数据库都消失了。
如何立即修复MySQL?
我找不到数据库'mysql',无法创建数据库,无法创建用户,我尝试执行的任何操作都会出错。
错误1045(28000) ):用户'root'@'localhost'的访问被拒绝(使用密码:是)。
我应该使用MacPorts重新安装MySQL吗?如果重新安装,我将丢失数据库
game_data
,对吧?#1 楼
请遵循以下步骤。使用
--skip-grant-tables
选项(安全设置)启动MySQL服务器实例或守护程序。$ mysqld --skip-grant-tables
执行以下语句。
$ mysql -u root mysql
$mysql> UPDATE user SET Password=PASSWORD('my_password') where USER='root';
$mysql> FLUSH PRIVILEGES;
如果遇到未知字段,请使用上面的密码错误:
update user set authentication_string=password('my_password') where user='root';
最后,重新启动不带
--skip-grant-tables
选项的实例/守护程序。$ /etc/init.d/mysql restart
您现在应该可以使用新密码进行连接。
$ mysql -u root -p
输入密码:
my_password
修复MySQL“无法锁定ibdata1”错误
sudo mv /usr/local/mysql/data/ibdata1 /usr/local/mysql/data/ibdata1.bak
sudo mv /usr/local/mysql/data/ib_logfile0 /usr/local/mysql/data/ib_logfile0.bak
sudo mv /usr/local/mysql/data/ib_logfile1 /usr/local/mysql/data/ib_logfile1.bak
sudo cp -a /usr/local/mysql/data/ibdata1.bak /usr/local/mysql/data/ibdata1
sudo cp -a /usr/local/mysql/data/ib_logfile0.bak /usr/local/mysql/data/ib_logfile0
sudo cp -a /usr/local/mysql/data/ib_logfile1.bak /usr/local/mysql/data/ib_logfile1
sudo /etc/init.d/mysql restart
评论
“ $ mysqld --skip-grant-tables”和“ InnoDB:无法锁定./ibdata1,错误:35 InnoDB:检查您是否还没有另一个mysqld进程InnoDB:使用相同的InnoDB数据或日志文件。”
– Vogelsire
2013年6月3日7:42
看到我上面的更新
–瑜伽
2013年6月3日7:45
我发现在发出第一个命令之前停止mysql可以停止发生锁定错误-服务mysql stop
–坦率的赞扎贝提斯
15年5月28日在3:09
显然,“密码”列已不复存在……已由“ authentication_string”替换。现在密码更新字符串为:UPDATE user SET authentication_string = PASSWORD('my_password')其中USER ='root';
– jdmcnair
15年12月23日在17:03
谢谢!现在我很好奇:是什么原因引起的?在Windows上?
–伊利亚·安德连科(Ilia Andrienko)
16年2月2日在16:38
#2 楼
以上都不对我有帮助。我发现我需要清除插件方法。在5.6中,我可以执行以下操作:sudo mysql -u root
use mysql;
[mysql] update user set plugin='' where User='root';
[mysql] flush privileges;
在5.7中,我发现需要执行以下操作:
sudo mysql -u root
use mysql;
[mysql] update user set plugin='mysql_native_password' where User='root';
[mysql] flush privileges;
根据文档,在将插件设置为空字符串的情况下,它实际上应该默认为mysql_native_password,但可能会因空密码哈希而感到困惑。有关更多细微差别,您可以在此处阅读文档:https://dev.mysql.com/doc/refman/5.7/en/native-authentication-plugin.html
评论
这为我解决了。当我查看mysql守护程序的状态时,看到以下警告:“ [警告]'用户'条目'root @ localhost'同时指定了密码和身份验证插件。该密码将被忽略。”将插件设置为“”可使我再次登录。谢谢@Mario Flores
–SpacePope
16-9-29在17:07
set plugin ='mysql_native_password'对我有用,谢谢!供参考:dev.mysql.com/doc/refman/5.7/en/…
–科恩。
16 Dec 8'在10:55
为什么对于2018年开始安装的软件包仍然存在问题?
–mckenzm
17年10月1日在6:31
好吧,MariaDB默认的plugin =“ unix_socket”是如此安全,以至于确实需要一段时间才能建立连接:)感谢您的回答,这对我来说非常有用。
– BurninLeo
17年12月7日在11:51
ubuntu 18,它起作用了
–拉哈尔(Rahal Kanishka)
18年6月23日在17:48
#3 楼
还请确保表user
中的所需记录具有一个空的plugin
字段(例如,可以是"unix_socket"
)。自版本5.5.7起,mysql具有各种auth插件支持
https:// dev.mysql.com/doc/refman/5.6/zh-CN/authentication-plugins.html
因此,如果您具有非空的
plugin
字段,则密码将被忽略,并且在mysql错误日志中会出现警告(对我来说是/var/log/mysql/error.log
):[Warning] 'user' entry 'root@localhost' has both a password and an authentication plugin specified. The password will be ignored.
评论
对于运行该服务器的其他人,当运行mysql服务器5.7.15时,如果您不提供插件,则实际上会将您的用户锁定在外。您可能正在寻找的是mysql_native_password插件。
–乔纳森·坎特雷尔(Jonathan Cantrell)
16-9-28在17:41
#4 楼
grep 'temporary password' /var/log/mysqld.log
Sort date (newest date)
您可能会看到类似的内容;
[root@SERVER ~]# grep 'temporary password' /var/log/mysqld.log
2016-01-16T18:07:29.688164Z 1 [Note] A temporary password is generated for root@localhost: O,k5.marHfFu
2016-01-22T13:14:17.974391Z 1 [Note] A temporary password is generated for root@localhost: b5nvIu!jh6ql
2016-01-22T15:35:48.496812Z 1 [Note] A temporary password is generated for root@localhost: (B*=T!uWJ7ws
2016-01-22T15:52:21.088610Z 1 [Note] A temporary password is generated for root@localhost: %tJXK7sytMJV
2016-01-22T16:24:41.384205Z 1 [Note] A temporary password is generated for root@localhost: lslQDvgwr3/S
2016-01-22T22:11:24.772275Z 1 [Note] A temporary password is generated for root@localhost: S4u+J,Rce_0t
[root@SERVER ~]# mysql_secure_installation
保护MySQL服务器部署的安全。
Enter password for user root:
The existing password for the user account root has expired. Please set a new password.
New password:
Re-enter new password:
/>
如果看到它说
... Failed! Error: Your password does not satisfy the current policy requirements
That means your password needs to have a character such as ! . # - etc...
mix characters well, upper case, lower case, ! . , # etc...
New password:
Re-enter new password:
The 'validate_password' plugin is installed on the server.
The subsequent steps will run with the existing configuration
of the plugin.
Using existing password for root.
Estimated strength of the password: 100
Change the password for root ? ((Press y|Y for Yes, any other key for No) : Y
New password:
Re-enter new password:
Estimated strength of the password: 100
Do you wish to continue with the password provided?(Press y|Y for Yes, any other key for No) : Y
By default, a MySQL installation has an anonymous user,
allowing anyone to log into MySQL without having to have
a user account created for them. This is intended only for
testing, and to make the installation go a bit smoother.
You should remove them before moving into a production
environment.
Remove anonymous users? (Press y|Y for Yes, any other key for No) : Y
Success.
Normally, root should only be allowed to connect from
'localhost'. This ensures that someone cannot guess at
the root password from the network.
Disallow root login remotely? (Press y|Y for Yes, any other key for No) : Y
Success.
By default, MySQL comes with a database named 'test' that
anyone can access. This is also intended only for testing,
and should be removed before moving into a production
environment.
Remove test database and access to it? (Press y|Y for Yes, any other key for No) : Y
- Dropping test database...
Success.
- Removing privileges on test database...
Success.
Reloading the privilege tables will ensure that all changes
made so far will take effect immediately.
Reload privilege tables now? (Press y|Y for Yes, any other key for No) : Y
Success.
All done!
[root@SERVER ~]# mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 11
Server version: 5.7.10 MySQL Community Server (GPL)
观看此视频的最后10分钟,它会教您如何操作。
评论
尽管这可以回答问题,但是您应该对链接的内容进行更详细的描述,并说明它与问题的关系。这将有助于确保在链接页面被删除或脱机的情况下,此答案仍然有用。有关更多信息,请参见此Meta Stack Exchange帖子。
–bwDraco
16年1月22日在23:15
这是我看到的用例,我正在使用Ansible在AWS的RHEL7上安装mysql,并且在重新配置并重新启动数据库后得到了相同的行为。您是否知道为什么首先发生这种情况,阻止了Ansible访问本地mysqld并对其进行配置。这只是出于测试目的。
– einarc
16年5月13日在21:43
显然,这取决于您如何初始化服务器,请在此处查看步骤4:dev.mysql.com/doc/refman/5.7/en/…
– einarc
16年5月13日在21:48
#5 楼
尝试:mysql --no-defaults --force --user=root --host=localhost --database=mysql
UPDATE user SET Password=PASSWORD('NEWPASSWORD') where USER='root';
FLUSH PRIVILEGES;
评论
您能否描述--no-defaults --force开关的作用?否则,它是上述已接受答案的VLQ副本。
–加拿大卢克
2014年2月21日在17:17
@CanadianLuke没有默认值会跳过任何本应包含的配置文件,即使发出的任何SQL命令失败,也将强制继续操作。如有疑问,请查阅手册
– deucalion
15年5月26日在11:39
需要将其编辑为答案
–加拿大卢克
15年5月26日在14:31
我收到错误1054(42S22):“字段列表”中的未知列“密码”
–乔纳森
16年5月16日在15:38
@JonathanLeaders外观:stackoverflow.com/questions/30692812/…
–古斯塔沃·杜阿尔特(Gustavo Duarte)
16年5月18日在0:47
#6 楼
就我而言,我的数据库损坏了,在Debian上重启mysql后,root登录名没有密码。解决方案是这样的:
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'test';
其他一些答案也提到过native_password插件,但这是您无需复杂摆弄就可以做到的方式。
这就是要更改的方式。
#7 楼
官方文档提出了一些不同的建议:首先,创建一个设置新密码的SQL文件,如下所示:
ALTER USER 'root'@'localhost' IDENTIFIED BY 'MyNewPass';
然后使用
--init-file
参数启动mysqld,例如: mysqld --init-file=/home/me/mysql-init &
确认设置了新密码后,别忘了杀死新启动的mysqld服务器。
评论
遇到新错误,例如错误1045(28000):用户'root'@'localhost'的访问被拒绝(使用密码:是)
– rosefun
20-11-14在6:56
评论
尝试使用与“ root” @“ localhost”不同的“ root” @“ 127.0.0.1”访问服务器。然后发出命令以创建用户'root'@'localhost'并为其授予所有特权。另请参阅如何让MySQL授权root用户?在超级用户上。它试图避免重设密码。
我在-p和密码之间只有一个空格。我知道它很傻,但可能会对某人有所帮助。