cutmancometh
cutmancometh

Reputation: 1737

MySQL Workbench for OSX. No utilities available

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".

Can't locate utilities

But when I go to the download page, there is no version available for Mac.

Utilities doesn't exist

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

Answers (2)

Matthew Orstad
Matthew Orstad

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

peterm
peterm

Reputation: 92845

You have to build it and install from source code

  1. 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
    
  2. 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

Related Questions