Skip to content

Instantly share code, notes, and snippets.

@jerry-maheswara-github
Last active January 8, 2020 23:11
Show Gist options
  • Save jerry-maheswara-github/cd851c4f37a4876b631b2a714a2de815 to your computer and use it in GitHub Desktop.
Save jerry-maheswara-github/cd851c4f37a4876b631b2a714a2de815 to your computer and use it in GitHub Desktop.
How to change mysql data folder on XAMPP macOS:
$ cp -R /Applications/XAMPP/xamppfiles/var/mysql /Volumes/DataDisk/Data/mysqldata
$ sudo chown -R _mysql /Volumes/DataDisk/Data/mysqldata
$ sudo chgrp -R _mysql /Volumes/DataDisk/Data/mysqldata
$ sudo nano /Applications/XAMPP/xamppfiles/bin/mysql.server
or
# sudo nano /Applications/XAMPP/xamppfiles/share/mysql/mysql.server
then fill in datadir with the appropriate path
basedir=
datadir=/Volumes/DataDisk/Data/mysqldata/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment