MySQL 用户 DB 没有密码列 - 在 OSX 上安装 MySQL

Posted

技术标签:

【中文标题】MySQL 用户 DB 没有密码列 - 在 OSX 上安装 MySQL【英文标题】:MySQL user DB does not have password columns - Installing MySQL on OSX 【发布时间】:2015-08-21 22:55:49 【问题描述】:

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

我所做的如下。

    安装 MySql-5.7.6 ~ .dmg(Community Server) 和工作台。 在 OSX 系统偏好设置中关闭服务器。 使用控制台访问 MySql。命令是mysqld_safe --skip-grant 执行update user set password=password('1111') where user='root';得到错误信息 --> ERROR 1054 (42S22): Unknown column 'password' in 'field list'

仅供参考,我做了use mysql;。 所以我确实对用户表进行了选择查询,发现密码列实际上不存在。

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

如何修改不存在的密码?

感谢您的回答:D

【问题讨论】:

现在我再次测试,我可以在没有 PW 的情况下访问 MySQL :( 可以更改(我的意思是更改用户表并通过查询添加密码列)用户表吗? SET PASSWORD for root@localhost = password('new-pass') -- 适用于任何 mysql 版本 UPDATE mysql.user SET authentication_string= 'password' WHERE User = 'root'; 因为字段 'Password' 已被 mysql 删除并替换为 authentication_string。注意:mysql 函数 PASSWORD('password') 依赖于很久以前使用生日攻击破解的 MD5 算法。因此,使用它会产生一种错误的安全感,因为攻击者可以将其生成的哈希粘贴到 hashkiller.co.uk/md5-decrypter.aspx 等公共网站中,然后检索您的纯文本密码。 【参考方案1】:

在 MySQL 5.7 中,mysql.user 表字段中的密码字段被删除,现在字段名称为 '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 相比,变化相当广泛:What’s New in MySQL 5.7

【讨论】:

此方法在启动 mysqld 时即使有 --skip-grant-tables 限制也有效。由于您是匿名用户,因此无法更改密码: ALTER USER 'root'@'localhost' IDENTIFIED BY 'new-password' ALTER USER 'root'@'*' IDENTIFIED BY 'new-password' 它会给您是匿名用户权限错误。 如果根本没有桌子怎么办? 更改密码字段名称...一个让很多人烦恼的决定... 即使执行此命令后,我也无法使用密码更新用户集 authentication_string=password('1111') where user='root'; 登录我收到 ERROR 1698 (28000): Access denied for user 'root'@'localhost' 在第2步重置root密码时,还要把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 LINEflush privileges;quit;【参考方案2】:

如果您没有在安装时设置密码(在本例中为 mysql using unix-socket plugin),则会发生此错误。

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

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

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

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

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! 我收到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" 您的回答很棒!这是在 6 小时的战斗中帮助我的一个答案 plugin="mysql_native_password" 帮我搞定了 非常适合我【参考方案3】:

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

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

现在应该是:

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

【讨论】:

【参考方案4】:

使用ALTER USER 命令而不是尝试更新USER 行。请记住,可能有多个“root”用户,因为用户实体也由他们连接的机器限定

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

例如。

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

【讨论】:

对于 MySQL 5.7.9,我必须 ALTER USER 才能正常工作。谢谢。 我们需要用户 \g 后跟上述命令。使用 MySQL 5.7.12。 ty 这个答案只对我有用,在 Ubuntu 16.04、mysql 5.7.19 上; 他们是否将通配符从 @ 更改为 *? Grr...现在我的问题比我来这里时更多。【参考方案5】:

仅当我在此处提到的命令之后“刷新”时才对我有用。这是我使用的命令的完整列表:

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

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

2- 一个一个地写下下面的命令

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

【讨论】:

【参考方案6】:

感谢您的帮助。以防万一人们仍然有问题,试试这个。

对于 MySQL 5.6 及以下版本

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

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

适用于 MySQL 5.7 及更高版本

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

【讨论】:

这在安装 mysql 时对我有帮助 【参考方案7】:

针对这个问题,我使用了一种简单粗暴的方法,将字段名重命名为密码,原因是我使用mac navicat premium软件在可视化操作中报错:Unknown column 'password' in 'field List ',软件本身使用密码让我不能轻易操作。 因此,我root进入数据库命令行,运行

Use mysql;

然后修改字段名:

ALTER TABLE user CHANGE authentication_string password text;

毕竟正常。

【讨论】:

【参考方案8】:

根本原因:root 没有密码,您的 python 连接语句应该反映这一点。

要解决错误 1698,请将您的 python 连接密码更改为 ''。

注意:手动更新用户密码并不能解决问题,您将 仍然收到错误 1698

【讨论】:

【参考方案9】:

即使重启mysql后也需要进一步设置记住密码

SET PASSWORD = PASSWORD('root');

【讨论】:

以上是关于MySQL 用户 DB 没有密码列 - 在 OSX 上安装 MySQL的主要内容,如果未能解决你的问题,请参考以下文章

phpmyadmin 在初始安装时无法登录(mac osx)

MYSQL随笔十五 mysql库

sh 简单的bash脚本创建mysql db,用户生成密码

mysql权限

Python DB operation

带有休眠和散列密码的 Spring Security DB 身份验证?