Simple way to display the mysql databases you have created
Open up a terminal window and write:sudo mysql -pyourpassword
E.g. if your password is dog this command will look like this: sudo mysql -pdog
After this, you’ll be inside the mysql command line and all you’ll have to do is execute this order:show databases;
Your databases will be listed this way on the shell:mysql> show databases;
--------------------
| Database |
--------------------
| information_schema |
| Typo3 |
| mysql |
--------------------
3 rows in set (0.00 sec)
mysql>
