~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to docs/installing/redhat.rst

  • Committer: Olaf van der Spek
  • Date: 2011-07-05 13:16:34 UTC
  • mto: This revision was merged to the branch mainline in revision 2384.
  • Revision ID: olafvdspek@gmail.com-20110705131634-f7g1fjro5slibmdj
Add data_ref.h
Use str_ref for append_identifier

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
Installing in RedHat and Fedora
2
 
===============================
 
2
================================
3
3
 
4
4
Using RPMs
5
5
----------
6
 
We have a custom RedHat/Fedora repository at
7
 
http://5dollarwhitebox.org/repos/drizzle/dev/ which includes everything needed
8
 
to install or compile Drizzle on RedHat 5 and 6 as well as Fedora 12 - 14.
 
6
There is a custom RedHat/Fedora repository at
 
7
http://rpm.drizzle.org/7-dev/ which includes everything needed
 
8
to install or compile Drizzle on RedHat 5 and 6 as well as Fedora 13 - 14.
9
9
 
10
 
A pre-requisite of this repository is that the
 
10
A pre-requisite of this repository in RedHat is that the
11
11
`EPEL <http://fedoraproject.org/wiki/EPEL>`_ repository is also added to your
12
12
distribution.
13
13
 
14
 
To add that repository, run the following command:
15
 
 
16
 
sudo rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/i386/epel-release-5-4.noarch.rpm
17
 
 
18
 
To add the repository to your distribution you also need to create a /etc/yum.repos.d/drizzle.repo file with the following content:
19
 
 
20
 
*RedHat*::
21
 
 
22
 
   [drizzle]
23
 
   name=drizzle
24
 
   baseurl=http://5dollarwhitebox.org/repos/drizzle/dev/Redhat/$releasever/$basearch/
25
 
   enabled=1
26
 
   gpgcheck=0
27
 
 
28
 
   [drizzle-src]
29
 
   name=drizzle-src
30
 
   baseurl=http://5dollarwhitebox.org/repos/drizzle/dev/Redhat/$releasever/SRPMS
31
 
   enabled=1
32
 
   gpgcheck=0
33
 
 
34
 
*Fedora*::
35
 
 
36
 
   [drizzle]
37
 
   name=drizzle
38
 
   baseurl=http://5dollarwhitebox.org/repos/drizzle/dev/Fedora/$releasever/$basearch/
39
 
   enabled=1
40
 
   gpgcheck=0
41
 
 
42
 
   [drizzle-src]
43
 
   name=drizzle-src
44
 
   baseurl=http://5dollarwhitebox.org/repos/drizzle/dev/Fedora/$releasever/SRPMS
45
 
   enabled=1
46
 
   gpgcheck=0
47
 
 
48
 
You can then use the following shell command::
49
 
 
50
 
   yum install drizzle7
 
14
.. note::
 
15
 
 
16
   The EPEL repository is not required in Fedora.
 
17
 
 
18
To add the EPEL repository, run one of the following commands (choose from the i386(32-bit) or x86_64(64-bit) EPEL repository package).
 
19
 
 
20
Install EPEL Repository on 32-bit Linux 5.X:
 
21
 
 
22
.. code-block:: bash
 
23
 
 
24
  sudo rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/i386/epel-release-5-4.noarch.rpm
 
25
 
 
26
Install EPEL Repository on 64-bit Linux 5.X:
 
27
 
 
28
.. code-block:: bash
 
29
 
 
30
  sudo rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm
 
31
 
 
32
To add the Drizzle repository to your system you also need to create a /etc/yum.repos.d/drizzle.repo file with the following content:
 
33
 
 
34
*RedHat*
 
35
 
 
36
.. code-block:: ini
 
37
 
 
38
   [drizzle]
 
39
   name=drizzle
 
40
   baseurl=http://rpm.drizzle.org/7-dev/redhat/$releasever/$basearch/
 
41
   enabled=1
 
42
   gpgcheck=0
 
43
 
 
44
   [drizzle-src]
 
45
   name=drizzle-src
 
46
   baseurl=http://rpm.drizzle.org/7-dev/redhat/$releasever/SRPMS
 
47
   enabled=1
 
48
   gpgcheck=0
 
49
 
 
50
**$releasever** uses RHEL 5 or RHEL 6, and **$basearch** is the architecture (i386 or x86_64).
 
51
 
 
52
*Fedora*
 
53
 
 
54
.. code-block:: ini
 
55
 
 
56
   [drizzle]
 
57
   name=drizzle
 
58
   baseurl=http://rpm.drizzle.org/7-dev/fedora/$releasever/$basearch/
 
59
   enabled=1
 
60
   gpgcheck=0
 
61
 
 
62
   [drizzle-src]
 
63
   name=drizzle-src
 
64
   baseurl=http://rpm.drizzle.org/7-dev/fedora/$releasever/SRPMS
 
65
   enabled=1
 
66
   gpgcheck=0
 
67
 
 
68
**$releasever** uses the Fedora version (currently 13 or 14), and **$basearch** is the architecture (i386 or x86_64).
 
69
 
 
70
You can then install Drizzle by running the following command:
 
71
 
 
72
.. code-block:: bash
 
73
 
 
74
   sudo yum install drizzle7-server drizzle7-client
51
75
 
52
76
Compiling From Source
53
77
---------------------
54
 
To compile from source you will need to add the repositories above and then install the following packages:
 
78
To compile from source you will need to add the repositories described above, and then install the following packages:
55
79
 
56
80
 * bzr
57
81
 * boost-devel