I wanted to do some experimentation with Percona XtraDB Cluster (Galera) and I didn't want to use virtual machines. I'm already using MySQL Sandbox for many other projects so that's the natural choice.
I've downloaded the tarball for Percona XtraDB Cluster 5.5.29 and I've extracted it to ~/opt/mysql/5.5.29-pxc.
Then I've installed 3 nodes:
make_sandbox 5.5.29-pxc -- --sandbox_port 4551 \
--sandbox_directory msb_5_5_29-pxc01
make_sandbox 5.5.29-pxc -- --sandbox_port 4552 \
--sandbox_directory msb_5_5_29-pxc02
make_sandbox 5.5.29-pxc -- --sandbox_port 4553 \
--sandbox_directory msb_5_5_29-pxc03
But when I try to start a node this error happens:
130327 14:21:03 [Note] WSREP: wsrep_load(): loading provider library '/home/dvee
den/mysql/5.5.29-pxc/lib/libgalera_smm.so'
130327 14:21:03 [ERROR] WSREP: wsrep_load(): dlopen(): libssl.so.10: cannot open shared object file: No such file or directory
130327 14:21:03 [ERROR] WSREP: wsrep_load(/home/dveeden/mysql/5.5.29-pxc/lib/libgalera_smm.so) failed: Invalid argument (22). Reverting to no provider.
There is no libssl.so.10 on my Ubuntu 12.10 system, but there is a libssl.so.1.0.0.
The fix for this issue is:
cd ~/opt/mysql/5.5.29-pxc/lib/
ln -s /lib/x86_64-linux-gnu/libssl.so.1.0.0 libssl.so.10
ln -s /lib/x86_64-linux-gnu/libcrypto.so.1.0.0 libcrypto.so.10
The symlinks are created inside the library directory for Percona XtraDB Cluster, this way I don't need to tinker with the global library directories.
Showing posts with label Galera. Show all posts
Showing posts with label Galera. Show all posts
Wednesday, March 27, 2013
Running Percona XtraDB Cluster in a Sandbox on Ubuntu
Thursday, February 28, 2013
MySQL Events
The last MySQL User Group NL meeting was last Friday. It's always nice to learn about MySQL and meet other MySQL users. There were two presentations: one about MySQL User Defined Functions (UDF's) and one about MySQL TCO. The slides are available from the meetup page.
There are already a number of MySQL events announced for the next few months. I'll only list events in the Netherlands and Virtual events.
MySQL Virtual Developer Days
This is a virtual event which will take place on March 19 (EMEA region, NA event is on March 12). There are many interesting topics: Performance Schema, New 5.6 Features, Replication, MySQL Enterprise Monitor
The eVite
SkySQL and MariaDB roadshow
21 March 2013 in Amsterdam
This event have presentations by Monty Widenius, Seppo Jaakola and
Anders Karlsson. The main topics are MariaDB and Galera.
The event page
MySQL User Group NL, Q2 Meeting
31 May 2013 in Geldermalsen
The event page
There are already a number of MySQL events announced for the next few months. I'll only list events in the Netherlands and Virtual events.
MySQL Virtual Developer Days
This is a virtual event which will take place on March 19 (EMEA region, NA event is on March 12). There are many interesting topics: Performance Schema, New 5.6 Features, Replication, MySQL Enterprise Monitor
The eVite
SkySQL and MariaDB roadshow
21 March 2013 in Amsterdam
This event have presentations by Monty Widenius, Seppo Jaakola and
Anders Karlsson. The main topics are MariaDB and Galera.
The event page
MySQL User Group NL, Q2 Meeting
31 May 2013 in Geldermalsen
The event page
Labels:
Events,
Galera,
mariadb,
mysql,
MySQL Enterprise Monitor,
netherlands,
SkySQL,
user group
Subscribe to:
Posts (Atom)