3

I just installed a CRM application with a MySQL database. I thought I new the name of the database but I can't find it. Now I am trying to perform a mysqldump but I don't know the name of my database or where it's located. Most docs I read assume the admin knows where this database is located and thee name of it - I should know this, I know.

nicorellius
  • 6,625
  • 13
  • 44
  • 75

2 Answers2

4

Under /var/lib/mysql.

Ignacio Vazquez-Abrams
  • 111,361
  • 10
  • 201
  • 247
3

If you can login to the MySQL server through a command line you can always issue a command to show all databases:

show databases;
quickcel
  • 4,779
  • 2
  • 24
  • 25