MySQL用户数据库没有密码列-在OSX上安装MySQL


176

我正在尝试更改MySql根密码。

我所做的如下。

  1. 安装MySql-5.7.6〜.dmg(社区服务器)和工作台。
  2. 在OSX系统首选项上关闭服务器。
  3. 使用控制台访问MySql。命令是mysqld_safe --skip-grant
  4. 执行update user set password=password('1111') where user='root';并得到一条错误消息-> ERROR 1054 (42S22): Unknown column 'password' in 'field list'

仅供参考,我做到了use mysql;。因此,我确实在用户表上选择了查询,发现密码列实际上不存在。

这很奇怪。原始用户表是否可能没有密码列?

如何更改不存在的密码?

谢谢你的回答:D


现在,我再次测试,可以不使用PW即可访问MySQL :(可以更改(我的意思是通过查询更改用户表并添加密码列)用户表吗?
Juneyoung 2007年

为root @ localhost = password('new-pass')设置密码-适用于任何mysql版本
SIDU

UPDATE mysql.user SET authentication_string= 'password' WHERE User = 'root'; 因为mysql删除了'Password'字段,并替换为authentication_string。注意:mysql函数PASSWORD('password')依赖于MD5算法,该算法是很早以前使用出生日攻击而破解的。因此,使用它会产生错误的安全感,因为攻击者只能将其产生的哈希粘贴到hashkiller.co.uk/md5-decrypter.aspx这样的公共网站中,然后检索您的纯文本密码。
Deo博士

Answers:


568

在MySQL 5.7中,删除了mysql.user表字段中的password字段,现在该字段名称为'authentication_string'。

首先选择数据库:

mysql>use mysql;

然后显示表格:

mysql>show tables;

您将找到用户表,现在让我们看一下它的字段:

mysql> describe user;
+------------------------+-----------------------------------+------+-----+-----------------------+-------+
| Field                  | Type                              | Null | Key | Default               | Extra |
+------------------------+-----------------------------------+------+-----+-----------------------+-------+
| Host                   | char(60)                          | NO   | PRI |                       |       |
| User                   | char(16)                          | NO   | PRI |                       |       |
| Select_priv            | enum('N','Y')                     | NO   |     | N                     |       |
| Insert_priv            | enum('N','Y')                     | NO   |     | N                     |       |
| Update_priv            | enum('N','Y')                     | NO   |     | N                     |       |
| Delete_priv            | enum('N','Y')                     | NO   |     | N                     |       |
| Create_priv            | enum('N','Y')                     | NO   |     | N                     |       |
| Drop_priv              | enum('N','Y')                     | NO   |     | N                     |       |
| Reload_priv            | enum('N','Y')                     | NO   |     | N                     |       |
| Shutdown_priv          | enum('N','Y')                     | NO   |     | N                     |       |
| Process_priv           | enum('N','Y')                     | NO   |     | N                     |       |
| File_priv              | enum('N','Y')                     | NO   |     | N                     |       |
| Grant_priv             | enum('N','Y')                     | NO   |     | N                     |       |
| References_priv        | enum('N','Y')                     | NO   |     | N                     |       |
| Index_priv             | enum('N','Y')                     | NO   |     | N                     |       |
| Alter_priv             | enum('N','Y')                     | NO   |     | N                     |       |
| Show_db_priv           | enum('N','Y')                     | NO   |     | N                     |       |
| Super_priv             | enum('N','Y')                     | NO   |     | N                     |       |
| Create_tmp_table_priv  | enum('N','Y')                     | NO   |     | N                     |       |
| Lock_tables_priv       | enum('N','Y')                     | NO   |     | N                     |       |
| Execute_priv           | enum('N','Y')                     | NO   |     | N                     |       |
| Repl_slave_priv        | enum('N','Y')                     | NO   |     | N                     |       |
| Repl_client_priv       | enum('N','Y')                     | NO   |     | N                     |       |
| Create_view_priv       | enum('N','Y')                     | NO   |     | N                     |       |
| Show_view_priv         | enum('N','Y')                     | NO   |     | N                     |       |
| Create_routine_priv    | enum('N','Y')                     | NO   |     | N                     |       |
| Alter_routine_priv     | enum('N','Y')                     | NO   |     | N                     |       |
| Create_user_priv       | enum('N','Y')                     | NO   |     | N                     |       |
| Event_priv             | enum('N','Y')                     | NO   |     | N                     |       |
| Trigger_priv           | enum('N','Y')                     | NO   |     | N                     |       |
| Create_tablespace_priv | enum('N','Y')                     | NO   |     | N                     |       |
| ssl_type               | enum('','ANY','X509','SPECIFIED') | NO   |     |                       |       |
| ssl_cipher             | blob                              | NO   |     | NULL                  |       |
| x509_issuer            | blob                              | NO   |     | NULL                  |       |
| x509_subject           | blob                              | NO   |     | NULL                  |       |
| max_questions          | int(11) unsigned                  | NO   |     | 0                     |       |
| max_updates            | int(11) unsigned                  | NO   |     | 0                     |       |
| max_connections        | int(11) unsigned                  | NO   |     | 0                     |       |
| max_user_connections   | int(11) unsigned                  | NO   |     | 0                     |       |
| plugin                 | char(64)                          | NO   |     | mysql_native_password |       |
| authentication_string  | text                              | YES  |     | NULL                  |       |
| password_expired       | enum('N','Y')                     | NO   |     | N                     |       |
| password_last_changed  | timestamp                         | YES  |     | NULL                  |       |
| password_lifetime      | smallint(5) unsigned              | YES  |     | NULL                  |       |
| account_locked         | enum('N','Y')                     | NO   |     | N                     |       |
+------------------------+-----------------------------------+------+-----+-----------------------+-------+
45 rows in set (0.00 sec)

惊喜!没有名为“ password”的字段,而密码为“ authentication_string”。因此,只需执行以下操作:

update user set authentication_string=password('1111') where user='root';

现在,一切都会好的。

与MySQL 5.6相比,变化非常广泛:MySQL 5.7的新增功能


44
先生,我过得很愉快。
Bisonfan95

3
启动mysqld时,即使--skip-grant-tables限制也可使用此方法。由于您是匿名用户,因此无法使用以下方式更改密码:ALTER USER'root'@'localhost'IDENTIFIED BY'new-password'ALTER USER'root'@'*'IDENTIFIED BY'new-password'您出现匿名用户权限错误。
Bisonfan95

如果根本没有桌子怎么办?
萨汉德(Sahand)

1
更改密码字段名称...一个决定引起了很多人的麻烦...
talsibony 17/07/19

2
当复位在步骤2根密码),也改变了AUTH插件mysql_native_password: use mysql; update user set authentication_string=PASSWORD("") where User='root'; update user set plugin="mysql_native_password" where User='root'; # THIS LINE flush privileges; quit;
Viswa

26

如果您未在安装时设置密码,则会发生此错误,在本例中为使用unix-socket插件mysql

但是,如果从设置(表mysql.user)中删除插件链接,则会出现其他问题。这不能解决问题,并且会导致另一个问题。要修复已删除的链接并设置密码(“ PWD”),请执行以下操作:

1)--skip-grant-tables如上所述运行。

如果它不工作,然后添加字符串skip-grant-tables中的部分[mysqld]/etc/mysql/mysql.conf.d/mysqld.cnf。然后做 sudo service mysql restart

2)运行mysql -u root -p,然后(更改“ PWD”):

update mysql.user 
    set authentication_string=PASSWORD("PWD"), plugin="mysql_native_password" 
    where User='root' and Host='localhost';    
flush privileges;

quit

然后sudo service mysql restart。检查:mysql -u root -p

如果在restart文件mysqld.cnf中设置了该字符串,请在该字符串中删除它。


发现!需要plugin =“ mysql_native_password”和刷新权限。无法将此与其他示例一起使用。谢谢bl79!
TheRealWebGuy

1
我得到了ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '("MYNEWPASSWORD"), plugin="mysql_native_password"
Chance Smith,

您的答案很棒!这是一个答案,帮助我在6个小时的战斗中
AlexNikonov

plugin =“ mysql_native_password”为我完成了麻烦
Joyner

对我而言完美工作
Mayank Sharma

24

我陷入的一个陷阱是现在没有密码字段,它已重命名为:

update user set password=PASSWORD("YOURPASSWORDHERE") where user='root';

现在应该是:

update user set authentication_string=password('YOURPASSWORDHERE') where user='root';


17

使用ALTER USER命令而不是尝试更新USER行。请记住,可能有多个“ root”用户,因为用户实体也要通过与其连接的计算机进行限定

https://dev.mysql.com/doc/refman/5.7/zh-CN/alter-user.html

例如。

ALTER USER 'root'@'localhost' IDENTIFIED BY 'new-password' 
ALTER USER 'root'@'*' IDENTIFIED BY 'new-password' 

2
对于MySQL 5.7.9,我必须ALTER USER才能正常工作。谢谢。
2016年

我们需要先使用\ g后接上述命令。使用MySql 5.7.12。ty
bobsouza '16

这个答案只对我有用,在Ubuntu 16.04,mysql 5.7.19;
A1Gard

他们是否将通配符从@更改为*?哎呀...现在我比来这里时有更多的疑问。
pguardiario

4

仅当我按照此处提到的命令“弄乱”时,它才与我一起使用。这是我使用的命令的完整列表:

先前的答案可能不适用于更高的mysql版本。如果先前的答案对您不起作用,请尝试以下步骤:

1-单击wamp图标> mysql> mysql控制台

2-一对一编写以下命令

use mysql;
update user set authentication_string=password('your_password') where user='root';
FLUSH PRIVILEGES;
quit

4

谢谢您的帮助。以防万一人们仍然遇到问题,请尝试此操作。

对于MySQL 5.6及以下版本

您是否忘记了Mac OS X的“ ROOT”密码并需要重设密码?请遵循以下4个简单步骤:

  1.  停止mysqld服务器。通常,可以通过“系统偏好设置”>“ MySQL”>“停止MySQL服务器”来完成此操作
  2.  通过特权绕过安全模式启动服务器从终端:      sudo /usr/local/mysql/bin/mysqld_safe --skip-grant-tables
  3.  在新的终端窗口中:      sudo /usr/local/mysql/bin/mysql -u root      UPDATE mysql.user SET Password=PASSWORD('NewPassword') WHERE User='root';      FLUSH PRIVILEGES;      \q
  4.  再次停止mysqld服务器,然后以正常模式重新启动它。

对于MySQL 5.7及更高版本

  1.  停止mysqld服务器。通常,这可以通过以下方式完成 'System Prefrences' > MySQL > 'Stop MySQL Server'
  2.  通过特权绕过安全模式启动服务器从终端:      sudo /usr/local/mysql/bin/mysqld_safe --skip-grant-tables
  3.  在新的终端窗口中:            sudo /usr/local/mysql/bin/mysql -u root      UPDATE mysql.user SET authentication_string=PASSWORD('NewPassword') WHERE User='root';      FLUSH PRIVILEGES;      \q      
  4.  再次停止mysqld服务器,然后以正常模式重新启动它。

这帮助了我,而安装MySQL <5.7
ANKIT阿加瓦尔

3

对于此问题,我使用了一种简单而粗鲁的方法,将字段名称重命名为password,原因是我在视觉操作错误中使用了mac navicat Premium软件:“ field List”中的“ unknown column” password”软件本身使用密码,因此我无法轻松操作。因此,我进入数据库命令行,运行

Use mysql;

然后修改字段名称:

ALTER TABLE user CHANGE authentication_string password text;

毕竟一切正常。


0

根本原因:root没有密码,并且您的python connect语句应该反映出来。

要解决错误1698,请将python连接密码更改为“”。

注意:手动更新用户密码无法解决问题,仍然会出现错误1698


0

请记住,即使在如下所示重新启动mysql之后,也需要进一步设置密码

SET PASSWORD = PASSWORD('root');
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.