MariaDB 10 rootユーザーのパスワードの再設定方法
環境
MariaDB 10.5
AlmaLinux release 9.2 (Turquoise Kodkod)
概要
パスワード指定なしで、rootユーザーでログインします。
$ mysql -u root
ログインできたら、以下のコマンドを実行し、パスワードの再設定を行います。
> ALTER USER 'root’@’localhost’ IDENTIFIED BY '設定するパスワード’;
設定を反映させます。
> FLUSH PRIVILEGES;
操作方法
# mysql -u root
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 4
Server version: 10.5.22-MariaDB MariaDB Server
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. MariaDB [(none)]> alter user 'root'@'localhost' identified by 'pwd123'; Query OK, 0 rows affected (0.002 sec) MariaDB [(none)]> flush privileges; Query OK, 0 rows affected (0.001 sec) MariaDB [(none)]> exit Bye