Why Can't I find my databases from Mysql on linux?

Why Can't I find my databases from Mysql on linux?

  • I'm new to linux. I cannot get a list of my databases by typing SHOW DATABASES on the MySQL shell. Though this MySQL program is aware of the MySQL datadir because it is listed when I type SHOW VARIABLES LIKE "%dir", as datadir = /var/lib/mysql. I am logged in as root. Normally on windows, I would type SHOW DATABASES on the MySQL command console that comes with WAMPSERVER and I'd get a list of all available databases on the localhost.

  • Answer:

    Your problem has nothing to do with missing databases. You real problem stems directly from the way you logged in to MySQL. First, look at your comment SHOW DATABASES; => information_schema, test. SELECT USER(); => root@localhost SELECT CURRENT_USER(); => @localhost SHOW GRANTS; => GRANT USAGE ON *.* TO ''@'localhost' Note the difference between USER() and CURRENT_USER() http://dev.mysql.com/doc/refman/5.5/en/information-functions.html#function_user reports how you attempted to authenticate in MySQL ('root'@'localhost') http://dev.mysql.com/doc/refman/5.5/en/information-functions.html#function_current-user reports how you were allowed to authenticate in MySQL (''@'localhost') Bottom Line : You have no rights to see anything. From the the output of USER() and CURRENT_USER(), there is no root@localhost defined in the table mysql.user. The further proof of this is the fact that you cannot see the mysql and performance_schema databases. A fresh install of MySQL would still have these databases fully visible if you had all rights enabled. You can verify this by going into the OS and running the following: cd /var/lib/mysql ls -l You should see the mysql and performance_schema databases as Linux folders. Thus, they are physically there. The problem is just the rights you have after user authentication. The only way to fix it is to create the root@localhost user with all the rights needed. I am going to show you how to create the MySQL user root@localhost in the Linux server Step 01) Create a script to create user If root had a password (such as mys3cr3t), run this SQLSTMT="GRANT ALL PRIVILEGES ON *.* to root@localhost" SQLSTMT="${SQLSTMT} IDENTIFIED BY 'mys3cr3t' WITH GRANT OPTION;" echo ${SQLSTMT} > /var/lib/mysql/init.sql chown mysql:mysql /var/lib/mysql/init.sql Step 02) Restart mysql using the init.sql file service mysql restart --init-file=/var/lib/mysql/init.sql Step 03) Remove /var/lib/mysql/init.sql rm -f /var/lib/mysql/init.sql Now, you have root@localhost with the password mys3cr3t Give it a Try !!!

okeyxyz at Database Administrators Visit the source

Was this solution helpful to you?

Other answers

If you are truly signed in as root - and the response to 'SELECT USER()' indicates this is true, then the databases do not exist on that instance of MySQL. You're either on the wrong instance (are there two copies of MySQL on that computer, or are you on the wrong host?) or you deleted the databases. The "SHOW DATABASES" command actually lists the directories in the main mysql directory (which is configured in my.cnf configuration file). So it is possible that you moved or repointed your mysql directory structure and the databases are still on your disk somewhere. Do a file system search for a directory with the name of one of your databases (e.g., "find / -type d -name my_database"). That will turn up anything that might be your database files in an unexpected place.

D Mac

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.