mysql data directory location

后端 未结 8 972
夕颜
夕颜 2020-11-30 21:18

I installed mysql in Mac after downloding its dmg file version 64 bit. While trying to create a database it gave me error 1006 -- can\'t create database. After browsing a nu

相关标签:
8条回答
  • 2020-11-30 21:33

    If you are using macOS {mine 'High Sierra'} and Installed XAMPP

    You can find mysql data files;

    Go to : /Applications/XAMPP/xamppfiles/var/mysql/

    0 讨论(0)
  • 2020-11-30 21:34

    If the software is Sequel pro the default install mysql on Mac OSX has data located here:

    /usr/local/var/mysql
    
    0 讨论(0)
  • 2020-11-30 21:39

    If you install MySQL via homebrew on MacOS, you might need to delete your old data directory /usr/local/var/mysql. Otherwise, it will fail during the initialization process with the following error:

    ==> /usr/local/Cellar/mysql/8.0.16/bin/mysqld --initialize-insecure --user=hohoho --basedir=/usr/local/Cellar/mysql/8.0.16 --datadir=/usr/local/var/mysql --tmpdir=/tmp
    2019-07-17T16:30:51.828887Z 0 [System] [MY-013169] [Server] /usr/local/Cellar/mysql/8.0.16/bin/mysqld (mysqld 8.0.16) initializing of server in progress as process 93487
    2019-07-17T16:30:51.830375Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
    2019-07-17T16:30:51.830381Z 0 [ERROR] [MY-013236] [Server] Newly created data directory /usr/local/var/mysql/ is unusable. You can safely remove it.
    2019-07-17T16:30:51.830410Z 0 [ERROR] [MY-010119] [Server] Aborting
    2019-07-17T16:30:51.830540Z 0 [System] [MY-010910] [Server] /usr/local/Cellar/mysql/8.0.16/bin/mysqld: Shutdown complete (mysqld 8.0.16)  Homebrew.
    
    0 讨论(0)
  • 2020-11-30 21:42

    As suggested, I edited this message to place a proper answer.

    The 'physical' location of the mysql databases are under /usr/local/mysql

    the mysql is a symlink to the current active mysql installation, in my case the exact folder is mysql-5.6.10-osx10.7-x86_64.

    Inside that folder you'll see another data folder, inside it are RESTRICTED folders with your databases.

    You can't actually see the size of your databases (that was my issue) from the Finder because the folder are protected, you can though see from the terminal with sudo du -sh /usr/local/mysql/data/{your-database-name} and like this you'll get a nice formatted output with the size.

    In those folder you have different files with all the folders present in your database, so it's safer to check the db's folder to get a size.

    That's it. Enjoy!

    0 讨论(0)
  • 2020-11-30 21:49

    Well, if yo don't know where is my.cnf (such Mac OS X installed with homebrew), or You are looking found others choices:

    ps aux|grep mysql
    abkrim            1160   0.0  0.2  2913068  26224   ??  R    Tue04PM   0:14.63 /usr/local/opt/mariadb/bin/mysqld --basedir=/usr/local/opt/mariadb --datadir=/usr/local/var/mysql --plugin-dir=/usr/local/opt/mariadb/lib/plugin --bind-address=127.0.0.1 --log-error=/usr/local/var/mysql/iMac-2.local.err --pid-file=iMac-2.local.pid
    

    You get datadir=/usr/local/var/mysql

    0 讨论(0)
  • 2020-11-30 21:52

    See if you have a file located under /etc/my.cnf. If so, it should tell you where the data directory is.

    For example:

    [mysqld]
    set-variable=local-infile=0
    datadir=/var/lib/mysql
    socket=/var/lib/mysql/mysql.sock
    user=mysql
    ...
    

    My guess is that your mysql might be installed to /usr/local/mysql-XXX.

    You may find these MySQL reference manual links useful:

    • Installing MySQL 8.0 on MacOS
    • Installing MySQL 5.7 on MacOS
    • Installing MySQL 5.6 on MacOS
    • Installing MySQL 5.5 on MacOS
    0 讨论(0)
提交回复
热议问题