I have a mariadb database and I want to list existing databases from the linux command line.
G Gabriel Turqos Active Member Joined Mar 11, 2019 May 18, 2020 #1 I have a mariadb database and I want to list existing databases from the linux command line.
Neemobeer Cloud Security Engineer Staff member Joined Jul 4, 2015 Location Colorado May 18, 2020 #2 To show databases it's just show databases SHOW DATABASES
edizgeorgi Active Member Joined May 31, 2019 May 19, 2020 #3 You can use mysql command like below. For more information look How To List MySQL/MariaDB Databases – POFTUT
You can use mysql command like below. For more information look How To List MySQL/MariaDB Databases – POFTUT
R RuskinF Member Joined Feb 17, 2020 Jun 24, 2020 #4 type show databases in the CLI And Boom you will have the list of databases at your disposal.