How to list databases from Linux command list?

Gabriel Turqos

Active Member
Joined
Mar 11, 2019
Messages
17
I have a mariadb database and I want to list existing databases from the linux command line.
 

To show databases it's just
show databases

SHOW DATABASES
 

You can use mysql command like below. For more information look How To List MySQL/MariaDB Databases – POFTUT
 

type show databases in the CLI
And Boom you will have the list of databases at your disposal.
 

Solution
Back
Top