gpt4 book ai didi

mysql - 如果我忘记了MySQL的密码,如何更改?

转载 作者:行者123 更新时间:2023-11-29 19:26:00 25 4
gpt4 key购买 nike

如果忘记了MySQL的密码,如何重置?

关注mysql reset password .

当我运行此命令时:

$ sudo mysql -u root  // refer to the given link '2. Start the mysqld demon process using the --skip-grant-tables option with this command '

我在终端中遇到此错误:

ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)

enter image description here

最佳答案

最后我通过其他方式解决了:

  1. 第 1 步, -> 系统偏好设置 -> 停止 mysql 服务器。
  2. 第 2 步,在终端中:

    $ cd /usr/local/mysql/bin/

    然后输入禁止mysql的验证功能:

    ./mysqld_safe --skip-grant-tables &

    然后mysql会重新启动,你可以在系统偏好设置->MySQL中查看其运行状态。

  3. 第三步:
    然后输入:

    ./mysql
    FLUSH PRIVILEGES;

    然后你可以重置你的mysql密码:

    SET PASSWORD FOR 'root'@'localhost' = PASSWORD('your new password');

关于mysql - 如果我忘记了MySQL的密码,如何更改?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42153084/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com