~ubuntu-branches/ubuntu/trusty/drizzle/trusty-updates

« back to all changes in this revision

Viewing changes to docs/installing/redhat.rst

  • Committer: Package Import Robot
  • Author(s): Tobias Frost
  • Date: 2012-04-04 15:12:07 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20120404151207-xwsgn1xegslle4p0
Tags: 1:7.1.32-rc-1
* New upstream release.
* Plugin-filtered-replicator upstream removed and will no longer be built.
* Updating d/*install files to accommodate upstream changes from drizzle7
  to drizzle
* Added symlink in libdrizzledmessage-dev to library
* libdrizzle: soname-bump
* Rename package drizzle-plugin-performance-dictionary to shorten package name
  (due to linitan warning package-has-long-file-name)
* Debian/control: removed unused substitution variable ${shlibs:Depends} for
  -dbg and -dev packages

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
Installing on RedHat and Fedora
2
2
===============================
3
3
 
4
 
Using RPMs
5
 
----------
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.
 
4
The recommended way to install Drizzle on RedHat, CentOS and Fedora is to use
 
5
`yum` to install Drizzle RPM packages.
 
6
 
 
7
There is a custom RedHat/Fedora repository available which includes everything 
 
8
needed to install or compile Drizzle on RedHat 5 and 6 as well as 
 
9
Fedora 13 - 14. For Drizzle 7, the repositories are at
 
10
 
 
11
http://rpm.drizzle.org/7-dev/ 
 
12
 
 
13
and for Drizzle 7.1 at
 
14
 
 
15
http://download.drizzle.org/7.1/
 
16
 
 
17
EPEL repository (RedHat only)
 
18
-----------------------------
9
19
 
10
20
A pre-requisite of this repository in RedHat is that the
11
21
`EPEL <http://fedoraproject.org/wiki/EPEL>`_ repository is also added to your
15
25
 
16
26
   The EPEL repository is not required in Fedora.
17
27
 
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).
 
28
To add the EPEL repository, run one of the following commands (choose from the 
 
29
i386(32-bit) or x86_64(64-bit) EPEL repository package).
19
30
 
20
31
Install EPEL Repository on 32-bit Linux 5.X:
21
32
 
29
40
 
30
41
  sudo rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm
31
42
 
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:
 
43
Install EPEL Repository on 32-bit Linux 6.X:
 
44
 
 
45
.. code-block:: bash
 
46
 
 
47
  sudo rpm -Uvh http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-5.noarch.rpm
 
48
 
 
49
Install EPEL Repository on 64-bit Linux 6.X:
 
50
 
 
51
.. code-block:: bash
 
52
 
 
53
  sudo rpm -Uvh http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-5.noarch.rpm
 
54
 
 
55
 
 
56
Adding the Drizzle 7 yum repository
 
57
-----------------------------------
 
58
 
 
59
.. note::
 
60
 
 
61
    This section provides the repositories for Drizzle 7.
 
62
 
 
63
To add the Drizzle repository to your system you also need to create a 
 
64
/etc/yum.repos.d/drizzle.repo file with the following content:
33
65
 
34
66
*RedHat*
35
67
 
43
75
 
44
76
   [drizzle-src]
45
77
   name=drizzle-src
46
 
   baseurl=http://rpm.drizzle.org/7-dev/redhat/$releasever/SRPMS
 
78
   baseurl=http://rpm.drizzle.org/7-dev/redhat/$releasever/source
47
79
   enabled=1
48
80
   gpgcheck=0
49
81
 
50
 
**$releasever** uses RHEL 5 or RHEL 6, and **$basearch** is the architecture (i386 or x86_64).
 
82
**$releasever** uses RHEL 5 or RHEL 6, and **$basearch** is the architecture 
 
83
(i386 or x86_64).
51
84
 
52
85
*Fedora*
53
86
 
61
94
 
62
95
   [drizzle-src]
63
96
   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
 
97
   baseurl=http://rpm.drizzle.org/7-dev/fedora/$releasever/source
 
98
   enabled=1
 
99
   gpgcheck=0
 
100
 
 
101
**$releasever** uses the Fedora version (currently 13 or 14), and **$basearch** 
 
102
is the architecture (i386 or x86_64).
 
103
 
 
104
You can then install Drizzle by running the following command:
 
105
 
 
106
.. code-block:: bash
 
107
 
 
108
   sudo yum install drizzle-server drizzle-client
 
109
 
 
110
 
 
111
Adding the Drizzle 7.1 yum repository
 
112
-------------------------------------
 
113
 
 
114
.. note::
 
115
 
 
116
    This section provides the repositories for Drizzle 7.1.
 
117
 
 
118
To add the Drizzle repository to your system you also need to create a 
 
119
/etc/yum.repos.d/drizzle.repo file with the following content:
 
120
 
 
121
*RedHat*
 
122
 
 
123
.. code-block:: ini
 
124
 
 
125
   [drizzle]
 
126
   name=drizzle
 
127
   baseurl=http://download.drizzle.org/7.1/redhat/$releasever/$basearch/
 
128
   enabled=1
 
129
   gpgcheck=0
 
130
 
 
131
   [drizzle-src]
 
132
   name=drizzle-src
 
133
   baseurl=http://download.drizzle.org/7.1/redhat/$releasever/source
 
134
   enabled=1
 
135
   gpgcheck=0
 
136
 
 
137
**$releasever** uses RHEL 5 or RHEL 6, and **$basearch** is the architecture 
 
138
(i386 or x86_64).
 
139
 
 
140
*Fedora*
 
141
 
 
142
.. code-block:: ini
 
143
 
 
144
   [drizzle]
 
145
   name=drizzle
 
146
   baseurl=http://download.drizzle.org/7.1/fedora/$releasever/$basearch/
 
147
   enabled=1
 
148
   gpgcheck=0
 
149
 
 
150
   [drizzle-src]
 
151
   name=drizzle-src
 
152
   baseurl=http://download.drizzle.org/7.1/fedora/$releasever/source
 
153
   enabled=1
 
154
   gpgcheck=0
 
155
 
 
156
**$releasever** uses the Fedora version (currently 13 or 14), and **$basearch** 
 
157
is the architecture (i386 or x86_64).
 
158
 
 
159
.. note::
 
160
 
 
161
    At the time of this writing, Fedora packages were not yet released for 
 
162
    Drizzle 7.1 series.
 
163
 
 
164
 
 
165
Installation
 
166
------------
 
167
 
 
168
You can then install Drizzle by running the following command:
 
169
 
 
170
.. code-block:: bash
 
171
 
 
172
   sudo yum install drizzle-server drizzle-client
 
173
 
 
174
Note: In the Drizzle 7-stable repository, the packages are named 
 
175
drizzle7-server and drizzle7-client.
75
176