summaryrefslogtreecommitdiffstats
path: root/doc/developer-guide/Compiling-RPMS.md
blob: 7a243ded73918aea6eb9be0a5f0d848692e7ad8c (plain)
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
How to compile GlusterFS RPMs from git source, for RHEL/CentOS, and Fedora
--------------------------------------------------------------------------

Creating rpm's of GlusterFS from git source is fairly easy, once you
know the steps.

RPMS can be compiled on at least the following OS's:

-   Red Hat Enterprise Linux 5, 6 (& 7 when available)
-   CentOS 5, 6 (& 7 when available)
-   Fedora 16-20

Specific instructions for compiling are below. If you're using:

-   Fedora 16-20 - Follow the Fedora steps, then do all of the Common
    steps.
-   CentOS 5.x - Follow the CentOS 5.x steps, then do all of the Common
    steps
-   CentOS 6.x - Follow the CentOS 6.x steps, then do all of the Common
    steps.
-   RHEL 6.x - Follow the RHEL 6.x steps, then do all of the Common
    steps.

Note - these instructions have been explicitly tested on all of CentOS
5.10, RHEL 6.4, CentOS 6.4+, and Fedora 16-20. Other releases of
RHEL/CentOS and Fedora may work too, but haven't been tested. Please
update this page appropriately if you do so. :)

### Preparation steps for Fedora 16-20 (only)

​1. Install gcc, the python development headers, and python setuptools:

		$ sudo yum -y install gcc python-devel python-setuptools

​2. If you're compiling GlusterFS version 3.4, then install
python-swiftclient. Other GlusterFS versions don't need it:

		$ sudo easy_install simplejson python-swiftclient

Now follow through the **Common Steps** part below.

### Preparation steps for CentOS 5.x (only)

You'll need EPEL installed first and some CentOS specific packages. The
commands below will get that done for you. After that, follow through
the "Common steps" section.

​1. Install EPEL first:

		$ curl -OL http://download.fedoraproject.org/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm
		$ sudo yum -y install epel-release-5-4.noarch.rpm --nogpgcheck

​2. Install the packages required only on CentOS 5.x:

		$ sudo yum -y install buildsys-macros gcc ncurses-devel python-ctypes python-sphinx10 \
		  redhat-rpm-config

Now follow through the **Common Steps** part below.

### Preparation steps for CentOS 6.x (only)

You'll need EPEL installed first and some CentOS specific packages. The
commands below will get that done for you. After that, follow through
the "Common steps" section.

​1. Install EPEL first:

		$ sudo yum -y install http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm

​2. Install the packages required only on CentOS:

		$ sudo yum -y install python-webob1.0 python-paste-deploy1.5 python-sphinx10 redhat-rpm-config

Now follow through the **Common Steps** part below.

### Preparation steps for RHEL 6.x (only)

You'll need EPEL installed first and some RHEL specific packages. The 2
commands below will get that done for you. After that, follow through
the "Common steps" section.

​1. Install EPEL first:

		$ sudo yum -y install http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm

​2. Install the packages required only on RHEL:

		$ sudo yum -y --enablerepo=rhel-6-server-optional-rpms install python-webob1.0 \
		  python-paste-deploy1.5 python-sphinx10 redhat-rpm-config

Now follow through the **Common Steps** part below.

### Common Steps

These steps are for both Fedora and RHEL/CentOS. At the end you'll have
the complete set of GlusterFS RPMs for your platform, ready to be
installed.

**NOTES for step 1 below:**

-   If you're on RHEL/CentOS 5.x and get a message about lvm2-devel not
    being available, it's ok. You can ignore it. :)
-   If you're on RHEL/CentOS 6.x and get any messages about
    python-eventlet, python-netifaces, python-sphinx and/or pyxattr not
    being available, it's ok. You can ignore them. :)

​1. Install the needed packages

		$ sudo yum -y --disablerepo=rhs* --enablerepo=*optional-rpms install git autoconf \
		  automake bison cmockery2-devel dos2unix flex fuse-devel glib2-devel libaio-devel \
		  libattr-devel libibverbs-devel librdmacm-devel libtool libxml2-devel lvm2-devel make \
		  openssl-devel pkgconfig pyliblzma python-devel python-eventlet python-netifaces \
		  python-paste-deploy python-simplejson python-sphinx python-webob pyxattr readline-devel \
		  rpm-build tar libcmocka-devel

​2. Clone the GlusterFS git repository

		$ git clone git://git.gluster.org/glusterfs
		$ cd glusterfs

​3. Choose which branch to compile

If you want to compile the latest development code, you can skip this
step and go on to the next one.

If instead you want to compile the code for a specific release of
GlusterFS (such as v3.4), get the list of release names here:

		$ git branch -a | grep release
		  remotes/origin/release-2.0
		  remotes/origin/release-3.0
		  remotes/origin/release-3.1
		  remotes/origin/release-3.2
		  remotes/origin/release-3.3
		  remotes/origin/release-3.4
		  remotes/origin/release-3.5

Then switch to the correct release using the git "checkout" command, and
the name of the release after the "remotes/origin/" bit from the list
above:

		$ git checkout release-3.4

**NOTE -** The CentOS 5.x instructions have only been tested for the
master branch in GlusterFS git. It is unknown (yet) if they work for
branches older then release-3.5.

​4. Configure and compile GlusterFS

Now you're ready to compile Gluster:

		$ ./autogen.sh
		$ ./configure --enable-fusermount
		$ make dist

​5. Create the GlusterFS RPMs

		$ cd extras/LinuxRPM
		$ make glusterrpms

That should complete with no errors, leaving you with a directory
containing the RPMs.

		$ ls -l *rpm
		-rw-rw-r-- 1 jc jc 3966111 Mar  2 12:15 glusterfs-3git-1.el5.centos.src.rpm
		-rw-rw-r-- 1 jc jc 1548890 Mar  2 12:17 glusterfs-3git-1.el5.centos.x86_64.rpm
		-rw-rw-r-- 1 jc jc   66680 Mar  2 12:17 glusterfs-api-3git-1.el5.centos.x86_64.rpm
		-rw-rw-r-- 1 jc jc   20399 Mar  2 12:17 glusterfs-api-devel-3git-1.el5.centos.x86_64.rpm
		-rw-rw-r-- 1 jc jc  123806 Mar  2 12:17 glusterfs-cli-3git-1.el5.centos.x86_64.rpm
		-rw-rw-r-- 1 jc jc 7850357 Mar  2 12:17 glusterfs-debuginfo-3git-1.el5.centos.x86_64.rpm
		-rw-rw-r-- 1 jc jc  112677 Mar  2 12:17 glusterfs-devel-3git-1.el5.centos.x86_64.rpm
		-rw-rw-r-- 1 jc jc  100410 Mar  2 12:17 glusterfs-fuse-3git-1.el5.centos.x86_64.rpm
		-rw-rw-r-- 1 jc jc  187221 Mar  2 12:17 glusterfs-geo-replication-3git-1.el5.centos.x86_64.rpm
		-rw-rw-r-- 1 jc jc  299171 Mar  2 12:17 glusterfs-libs-3git-1.el5.centos.x86_64.rpm
		-rw-rw-r-- 1 jc jc   44943 Mar  2 12:17 glusterfs-rdma-3git-1.el5.centos.x86_64.rpm
		-rw-rw-r-- 1 jc jc  123065 Mar  2 12:17 glusterfs-regression-tests-3git-1.el5.centos.x86_64.rpm
		-rw-rw-r-- 1 jc jc   16224 Mar  2 12:17 glusterfs-resource-agents-3git-1.el5.centos.x86_64.rpm
		-rw-rw-r-- 1 jc jc  654043 Mar  2 12:17 glusterfs-server-3git-1.el5.centos.x86_64.rpm