Hello,
as a workaround I've tried to copy the connector from another installation to a Galery Node:
1. Installed the connector on an (identical RHEL6/x64 system) with MariaDB-Server (without Galera) installed.
Tested the existance of that connector via mysql "show plugins;"
2. Installed dependent libraries (obtained via "yum deplist MariaDB-connect-engine"
and "ldd -v /usr/lib64/mysql/plugin/ha_connect.so"):
yum install glibc libstdc++ zlib libxml2 unixODBC
3. Copied the libaries and config file (obtained via "repoquery -lq MariaDB-connect-engine"):
cp ha_connect.so /usr/lib64/mysql/plugin/ha_connect.so
chmod 0755 /usr/lib64/mysql/plugin/ha_connect.so
chgrp root:root /usr/lib64/mysql/plugin/ha_connect.so
4. Copied libmysqld (not avaiable on galera cluster nodes):
cp libmysqld.so.18 /usr/lib64/libmysqld.so.18
chmod 0755 /usr/lib64/libmysqld.so.18
cd /usr/lib64
ln -s libmysqld.so.18 libmysqld.so
5. Restarted the Galera Cluster Node:
service mysql restart
But unfortuately, there is still an unresolved (late bound) dependency:
140526 9:23:49 [ERROR] Can't open shared library '/usr/lib64/mysql/plugin/ha_connect.so' (errno: 0, undefined symbol: _ZN7handler13set_lock_typeE13thr_lock_type)
140526 9:23:49 [ERROR] Couldn't load plugins from 'ha_connect.so'.
As of now I did not find the library providing that method.
Is there a way to workaround that issue and to get the connector working without the "MariaDB-server" package?
Let us research can we support CONNECT engine on Galera and if we can how to enable the installation.