forked from percona/percona-xtrabackup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD.XtraBackup.txt
41 lines (27 loc) · 1.15 KB
/
BUILD.XtraBackup.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
================================
How to build XtraBackup on Linux
================================
Prerequisites
-------------
The following packages and tools must be installed to compile
Percona XtraBackup from source. These might vary from system to system.
In Debian-based distributions, you need to:
$ apt-get install build-essential flex bison automake autoconf bzr \
libtool cmake libaio-dev mysql-client libncurses-dev zlib1g-dev \
libgcrypt11-dev
In RPM-based distributions, you need to:
$ yum install cmake gcc gcc-c++ libaio libaio-devel automake autoconf bzr \
bison libtool ncurses5-devel
Compiling with CMake
--------------------
At the base directory of the source code tree, if you execute
$ cmake -DBUILD_CONFIG=xtrabackup_release && make -j4
and you go for a coffee, at your return XtraBackup will be ready to be used.
Installation
------------
The following command:
$ make install
will install all XtraBackup binaries, the innobackupex script and tests
to /usr/local/xtrabackup. You can override this either with “make
DESTDIR=... install” or by changing the installation layout with “cmake
-DINSTALL_LAYOUT=...”.