-
-
Save handerson/2217860 to your computer and use it in GitHub Desktop.
How to setup the MySQL client and MySQLDump client on Mac OS x from MySQL Workbench
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#MySQL Client | |
ln -s /Applications/MySQLWorkbench.app/Contents/Resources/mysql /usr/bin/mysql | |
#MySQL Dump | |
ln -s /Applications/MySQLWorkbench.app/Contents/Resources/mysqldump /usr/bin/mysqldump | |
#How to fix the "Library not loaded: libmysqlclient.18.dylib (LoadError)" error | |
sudo ln -s /usr/local/mysql/lib/libmysqlclient.18.dylib /usr/lib/libmysqlclient.18.dylib |
steenzout
commented
Dec 8, 2014
thank you..
also can be found @ /Applications/MySQLWorkbench.app/Contents/MacOS
Thanks
Thanks!
Updated to MySQLWorkbench 6.3 and newer osx
#MySQL Client
ln -s /Applications/MySQLWorkbench.app/Contents/MacOS/mysql /usr/bin/mysql
#MySQL Dump
ln -s /Applications/MySQLWorkbench.app/Contents/MacOS/mysqldump /usr/local/bin/mysqldump
Thanks!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment