MySQL Workbench 5.1 Beta Released for Linux
Posted by Hodge on Mar 22, 2009 in Databases, Linux, Ubuntu • 2 comments •
I’ve had a play with a few of the previous Alpha releases, and so far so good. Yesterday, MySQL Workbench 5.1 Beta was released, so I decided to download it and give it a go. There is currently no official 64 Bit binary installer available, so we still need to compile from the source. This has, however, become a much less complicated task since the initial Alpha releases!
32 Bit users
32 Bit users need only download the precompiled deb from one of the MySQL Mirrors, and once downloaded, the deb can be installed by opening a Terminal and running the following:
sudo dpkg -i mysql-workbench-oss-5.1.9-1_i386.deb
64 Bit users
To compile MySQL Workbench from source, a bunch of dependencies need to be installed, which can be done easily by running the following in a Terminal:
sudo apt-get install build-essential autoconf automake libtool libzip-dev libxml2-dev libsigc++-2.0-dev libglade2-dev libgtkmm-2.4-dev libglu1-mesa-dev libgl1-mesa-glx mesa-common-dev libmysqlclient15-dev uuid-dev liblua5.1-dev libpixman-1-dev libpcre3-dev libgnome2-dev libgtk2.0-dev libpango1.0-dev libcairo2-dev python-dev
The source package can be downloaded once again from one of the MySQL Mirrors. As usual, I downloaded to my Desktop, and ran the following to compile and install:
cd
mkdir mysqlwb-src mysql-workbench
mv Desktop/mysql-workbench-oss-5.1.9.tar.gz mysqlwb-src
cd mysqlwb-src
tar -zxvf mysql-workbench-oss-5.1.9.tar.gz
cd mysql-workbench-oss-5.1.9
./autogen.sh
make install DESTDIR=/home/<username>/mysql-workbench
I’m using the DESTDIR option, since with Workbench being in Beta, I don’t really want it installing system wide.
Unless you’re lucky enough to have a machine with ridiculous specs, this will take a while – so go make a brew, coffee, smoke a cigarette, or [instert short term recreational activity here], and come back in a few.
No, really – it takes a long time…
Once installed (took a long time, eh?), running it is easy – simply navigate to the installation directory and run the executable from the Terminal:
cd ~/mysql-workbench/usr/local/bin
./mysql-workbench
Something not quite right? Inaccuracies or invalid code? Didn’t work for you? Don’t like me using Ss instead of Zs? Add a comment below! All comments are welcome. Except spam, because spam is a bit crap.
|
|
Lot 6 New HP G60 15.6 Laptop Notebook Win 7 HDMI Webcam $3,149.95 |
|
|
Lenovo ThinkPad X201s 5397FFU 5397-FFU Notebook/Laptop $2,646.40 |
|
|
Lenovo ThinkPad X201s 5413FFU 5413-FFU Notebook/Laptop $2,636.88 |
|
|
New Lenovo ThinkPad W510 43192RU Laptop Notebook $2,494.99 |
|
|
Lenovo ThinkPad X200s 7469-5GU 74695GU Notebook/Laptop $2,385.48 |
No related posts.
Related posts brought to you by Yet Another Related Posts Plugin.






for a faster compilation use the “-jn” option for parallel processing, where “n” should be the number of cpus you intend to use. e.g.
make -j2 install DESTDIR=/home//mysql-workbench
and btw. only since the beta version the installation of lua scripts are possible.
I’ve tried unsuccessfully to install the PropelExport script in the alpha version.
Debian-Ubuntu repository:
deb ftp://ftp.mysql.com/pub/mysql/download/gui-tools/ubuntu/ amd64/
Plugins dont run