ubuntu@i-11100000125436:~$ sudo mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 11
Server version: 8.0.22 MySQL Community Server - GPL
Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.
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.
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
| sys |
+--------------------+
4 rows in set (0.05 sec)
mysql> quit
Bye
ubuntu@i-11100000125436:~$ mysql -u wptest_user -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 13
Server version: 8.0.22 MySQL Community Server - GPL
Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.
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.
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| wptest |
+--------------------+
2 rows in set (0.01 sec)
show databasesで確認出来るデータベースがwptestのみである事が分かります。 information_schemaはスキーマ情報(要はwptestデータベースの情報)が格納されているMySQL側の管理データベースなので気にしないで下さい。 ver5.5くらい?(覚えてない)から必ず付与されるようになったのですが、昔はこれが自動付与されなかったのでマイグレーション用に自分で付与する感じで面倒臭かったのだけは覚えてる。
コメント