Reputation: 1737
I'm trying get MySQL and Workbench running on my Mac.
Workbench installed just fine, but when I try to run MySQL utilities, I get an error saying that "The command line MySQL utilities could not be located".
But when I go to the download page, there is no version available for Mac.
I have already installed MySQL community server by using the .dmg installer.
Please help, anyone who has installed MySQL workbench on a Mac recently.
(P.S. - I'm running OSX 10.9, if it matters).
Thanks!
Upvotes: 3
Views: 4261
Reputation: 64
The utilities are available now for Mac OS 10.6 (under previous GA versions) to 10.9:
http://dev.mysql.com/downloads/utilities/
Upvotes: 1
Reputation: 92845
You have to build it and install from source code
Download (Linux - Generic) and install Connector/Python first
$ tar -xvf mysql-connector-python-1.0.12.tar.gz $ cd mysql-connector-python-1.0.12 $ sudo python setup.py install
Download (Platform Independent) and install MySQL Utilities
$ tar -xvf mysql-utilities-1.3.5.tar.gz $ cd mysql-utilities-1.3.5/ $ python ./setup.py build $ sudo python ./setup.py install
And voila you get yourself MySQL Utilities
$ /usr/local/bin/mysqluc -e "help utilities" Launching console ... Utility Description ---------------- --------------------------------------------------------- mysqlauditadmin audit log maintenance utility mysqlauditgrep audit log search utility mysqldbcompare compare databases for consistency mysqldbcopy copy databases from one server to another mysqldbexport export metadata and data from databases mysqldbimport import metadata and data from files mysqldiff compare object definitions among objects where the difference is how db1.obj1 differs from db2.obj2 mysqldiskusage show disk usage for databases mysqlfailover automatic replication health monitoring and failover mysqlfrm show CREATE TABLE from .frm files mysqlindexcheck check for duplicate or redundant indexes mysqlmetagrep search metadata mysqlprocgrep search process information mysqlreplicate establish replication with a master mysqlrpladmin administration utility for MySQL replication mysqlrplcheck check replication mysqlrplshow show slaves attached to a master mysqlserverclone start another instance of a running server mysqlserverinfo show server information mysqluserclone clone a MySQL user account to one or more new users
Upvotes: 16