Project

General

Profile

Support #283

Updated by Daniel Curtis about 9 years ago

I am currently looking at alternatives to MySQL as it is proving to be inadequate for scaling, high availability, and replication. The most viable option would be MariaDB or Percona, I have chosen MariaDB. 

 * Install dependencies: 
 <pre> 
 sudo su 
 apt-get install build-essential libaio-dev bzr libtool debhelper libncurses5-dev libwrap0-dev zlib1g-dev libreadline-dev po-debconf chrpath doxygen texlive-latex-base ghostscript gawk bison hardening-wrapper cmake checkinstall 
 </pre> 

 * Download MariaDB via bzr: 
 <pre> 
 cd /usr/local/src 
 mkdir mariadb-server-5.5 
 bzr branch lp:maria/5.5 trunk 
 </pre> 

 * Configure, compile, and build MariaDB .deb package: 
 <pre> 
 cd 5.5 
 ./configure 
 make 
 checkinstall -D make install 
 </pre>

Back