Comments - TokuDB engine Installation problem

9 years, 12 months ago Elena Stepanova

The downloads page offers two x86_64.tar.gz files: "mariadb-10.0.10-linux-x86_64.tar.gz" and "mariadb-10.0.10-linux-x86_64.tar.gz (requires GLIBC_2.14+)". If you want to use TokuDB, you need the second one, it has ha_tokudb.so. It is expected to work on Ubuntu 12.04, at least it is installable.

Regarding the Connect engine, as the previous comment says, you are missing the library. It is possible that it doesn't exist for Ubuntu 12.04 (binary tarballs are not fully compatible with all systems). If you need the Connect engine, try to install the deb packages; there will be a separate deb package mariadb-connect-engine-10.0 in addition to the usual server/client packages.

Unfortunately, as the previous comment also said, the deb packages for Precise do not have TokuDB engine. If you need both TokuDB and Connect at once, you can install deb packages and copy ha_tokudb.so from the binary tarball into the plugin folder.

 
9 years, 12 months ago John Zobolas

I just tested downloading and installing mariadb-10.0.10-linux-x86_64.tar.gz (requires GLIBC_2.14+) file and it worked fine: TokuDB was installed by using the command:

install soname 'ha_tokudb';

As for Connect the solution i found was quite simple: just run the command: apt-get install libodbc1 After that, the command install soname 'ha_connect'; is working and Connect engine is installed.

 
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.