Сброс пароля MySQL / MariaDB на OSX - PullRequest
0 голосов
/ 26 марта 2019

Я установил MariaDB через Homebrew после выполнения данного руководства .Он работал нормально, однако сегодня срок действия пароля root истек, и я не могу сбросить его с помощью какого-либо параметра типа —skip-grant-tables —skip-networking.

До сих пор я пробовал:

brew services stop mariadb
mysqld_safe --skip-grant-tables --skip-networking
mysql_secure_installation

также попробовал

mysql_secure_installation --connect-expired-password

Что дает мне:

In order to log into MariaDB to secure it, we'll need the current
password for the root user.  If you've just installed MariaDB, and
you haven't set the root password yet, the password will be blank,
so you should just press enter here.

Enter current password for root (enter for none): 
/usr/local/Cellar/mariadb/10.3.13_1/bin/mysql: unknown option '--connect-expired-password'
OK, successfully used password, moving on...

Setting the root password ensures that nobody can log into the MariaDB
root user without the proper authorisation.

Set root password? [Y/n] Y
New password: 
Re-enter new password: 
/usr/local/Cellar/mariadb/10.3.13_1/bin/mysql: unknown option '--connect-expired-password'
Password update failed!
Cleaning up...

Я также добавил:

[mysqld]
default_password_lifetime=0
skip-grant-tables

к /usr/local/etc/my.cnf

Тем не менее, я не могу обновить пароль root с помощью приведенных выше команд.Заваривающий доктор возвращается чистым, и у меня заканчиваются вещи, чтобы попробовать.

1 Ответ

0 голосов
/ 27 марта 2019

Закончено выполнение /usr/local/mysql/bin/mysqladmin -u root -p password и установка нового пароля.

...