September 2014
Intermediate to advanced
298 pages
6h 13m
English
In this section, we will discuss the basics of the installation and configuration. As there are a lot of options and things to understand, we'll concentrate first on how to get something working in a simple way. Then, we'll see configuration options in more detail.
To avoid confusion, we'll use InnoDB exclusively in this configuration.
If you want to test it with Vagrant, you can use the following Vagrantfile here:
# -*- mode: ruby -*- # vi: set ft=ruby : # Vagrantfile API/syntax version. Don't touch unless you know what you're doing! # VAGRANTFILE_API_VERSION = "2" # Insert all your Vms with configs boxes = [ { :name => :galera1, :role => 'gc', :ip => '192.168.33.31' }, # galera cluster ...