MySQL: How to reset or change the MySQL root password?(MySQL:如何重置或更改 MySQL 根密码?)
问题描述
如何更改 ubuntu 服务器中的 MySQL 根密码和用户名?在设置任何更改之前是否需要停止 mysql 服务?
我也有 phpmyadmin 设置,phpmyadmin 会自动更新吗?
在 Ubuntu Linux 上设置/更改/重置 MySQL 根密码.在终端中输入以下几行.
- 停止 MySQL 服务器:
sudo/etc/init.d/mysql stop - 启动
mysqld配置:sudo mysqld --skip-grant-tables &
在某些情况下,您必须先创建 /var/run/mysqld:
sudo mkdir -v/var/run/mysqld &&须藤 chown mysql/var/run/mysqld- 以root身份登录MySQL:
mysql -u root mysql - 将
YOURNEWPASSWORD替换为您的新密码:
对于 MySQL <8.0
更新mysql.user放密码 = PASSWORD('你的新密码')在哪里用户 = 'root';同花顺特权;出口;<块引用>
注意:在某些版本上,如果 password 列不存在,您可能需要尝试:UPDATE user SET authentication_string=password('YOURNEWPASSWORD') WHERE user='root';
注意:此方法不被认为是最安全的密码重置方式,但确实有效.
对于 MySQL >= 8.0
ALTER USER 'root'@'localhost' IDENTIFIED BY 'YOURNEWPASSWORD';参考文献:
- 在 Ubuntu 上设置/更改/重置 MySQL 根密码Linux
- 如何重置根密码 (v5.6)
- 如何重置根密码 (v8.0)
How do I change the MySQL root password and username in ubuntu server? Do I need to stop the mysql service before setting any changes?
I have a phpmyadmin setup as well, will phpmyadmin get updated automatically?
Set / change / reset the MySQL root password on Ubuntu Linux. Enter the following lines in your terminal.
- Stop the MySQL Server:
sudo /etc/init.d/mysql stop - Start the
mysqldconfiguration:sudo mysqld --skip-grant-tables &
In some cases, you've to create the /var/run/mysqld first:
sudo mkdir -v /var/run/mysqld && sudo chown mysql /var/run/mysqld
- Login to MySQL as root:
mysql -u root mysql - Replace
YOURNEWPASSWORDwith your new password:
For MySQL < 8.0
UPDATE
mysql.user
SET
Password = PASSWORD('YOURNEWPASSWORD')
WHERE
User = 'root';
FLUSH PRIVILEGES;
exit;
Note: on some versions, if
passwordcolumn doesn't exist, you may want to try:
UPDATE user SET authentication_string=password('YOURNEWPASSWORD') WHERE user='root';
Note: This method is not regarded as the most secure way of resetting the password, however, it works.
For MySQL >= 8.0
ALTER USER 'root'@'localhost' IDENTIFIED BY 'YOURNEWPASSWORD';
References:
- Set / Change / Reset the MySQL root password on Ubuntu Linux
- How to Reset the Root Password (v5.6)
- How to Reset the Root Password (v8.0)
这篇关于MySQL:如何重置或更改 MySQL 根密码?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:MySQL:如何重置或更改 MySQL 根密码?
基础教程推荐
- 需要 MySQL 5.1 中的抽象触发器来更新审计日志 2021-01-01
- SQL:使用来自具有相同列名的两个表中的数据... 2021-01-01
- SQL Server 实例在登录协商期间返回无效或不受支持的协议版本 2021-01-01
- 在 SQL 中连接多个表 2021-01-01
- 将 SQL Server DateTime 列迁移到 DateTimeOffset 2021-01-01
- SSMS 中的权限问题:“对象 'extended_properties'、数据库 'mssqlsystem_resource'、... 错误 229)上的 SELECT 权限被拒绝" 2022-01-01
- 如何使用 mysql.connector 禁用查询缓存 2022-01-01
- SQL 效率:WHERE IN 子查询 vs. JOIN 然后 GROUP 2021-01-01
- 是否可以执行按位分组功能? 2021-01-01
- 无法解决整理冲突 2021-01-01
