ログイン
以下のコマンド入力後にパスワードを入力。
mysql -u username -p
たとえばrootで入る場合。”Enter password:”に対してパスワードを入力する。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
$ mysql -u root -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 6 Server version: 5.7.34-log Source distribution Copyright (c) 2000, 2021, Oracle and/or its affiliates. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. root@localhost [(none)]> show databases; |
パスワード変更
OSプロンプトから
OSのプロンプトに対して、以下のコマンド入力後に変更前のパスワードを入力。
mysqladmin password new_password -u root -p
たとえばrootのパスワードを変更する場合。”Enter password:”に対しては変更前のパスワードを入力する。
1 2 3 4 |
$ mysqladmin password ****** -u root -p Enter password: mysqladmin: [Warning] Using a password on the command line interface can be insecure. Warning: Since password will be sent to server in plain text, use ssl connection to ensure password safety. |
MySQLログイン中
MySQLのプロンプトで以下のコマンドを入力。
SET PASSWORD FOR user@host=password('new_password');
たとえばrootのパスワードを変更する場合。
1 2 |
root@localhost [(none)]> SET PASSWORD FOR root@localhost=password('******'); Query OK, 0 rows affected, 1 warning (0.00 sec) |