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

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
Installing on RedHat and Fedora
===============================

The recommended way to install Drizzle on RedHat, CentOS and Fedora is to use
`yum` to install Drizzle RPM packages.

There is a custom RedHat/Fedora repository available which includes everything 
needed to install or compile Drizzle on RedHat 5 and 6 as well as 
Fedora 13 - 14. For Drizzle 7, the repositories are at

http://rpm.drizzle.org/7-dev/ 

and for Drizzle 7.1 at

http://download.drizzle.org/7.1/

EPEL repository (RedHat only)
-----------------------------

A pre-requisite of this repository in RedHat is that the
`EPEL <http://fedoraproject.org/wiki/EPEL>`_ repository is also added to your
distribution.

.. note::

   The EPEL repository is not required in Fedora.

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).

Install EPEL Repository on 32-bit Linux 5.X:

.. code-block:: bash

  sudo rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/i386/epel-release-5-4.noarch.rpm

Install EPEL Repository on 64-bit Linux 5.X:

.. code-block:: bash

  sudo rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm

Install EPEL Repository on 32-bit Linux 6.X:

.. code-block:: bash

  sudo rpm -Uvh http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-5.noarch.rpm

Install EPEL Repository on 64-bit Linux 6.X:

.. code-block:: bash

  sudo rpm -Uvh http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-5.noarch.rpm


Adding the Drizzle 7 yum repository
-----------------------------------

.. note::

    This section provides the repositories for Drizzle 7.

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:

*RedHat*

.. code-block:: ini

   [drizzle]
   name=drizzle
   baseurl=http://rpm.drizzle.org/7-dev/redhat/$releasever/$basearch/
   enabled=1
   gpgcheck=0

   [drizzle-src]
   name=drizzle-src
   baseurl=http://rpm.drizzle.org/7-dev/redhat/$releasever/source
   enabled=1
   gpgcheck=0

**$releasever** uses RHEL 5 or RHEL 6, and **$basearch** is the architecture 
(i386 or x86_64).

*Fedora*

.. code-block:: ini

   [drizzle]
   name=drizzle
   baseurl=http://rpm.drizzle.org/7-dev/fedora/$releasever/$basearch/
   enabled=1
   gpgcheck=0

   [drizzle-src]
   name=drizzle-src
   baseurl=http://rpm.drizzle.org/7-dev/fedora/$releasever/source
   enabled=1
   gpgcheck=0

**$releasever** uses the Fedora version (currently 13 or 14), and **$basearch** 
is the architecture (i386 or x86_64).

You can then install Drizzle by running the following command:

.. code-block:: bash

   sudo yum install drizzle-server drizzle-client


Adding the Drizzle 7.1 yum repository
-------------------------------------

.. note::

    This section provides the repositories for Drizzle 7.1.

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:

*RedHat*

.. code-block:: ini

   [drizzle]
   name=drizzle
   baseurl=http://download.drizzle.org/7.1/redhat/$releasever/$basearch/
   enabled=1
   gpgcheck=0

   [drizzle-src]
   name=drizzle-src
   baseurl=http://download.drizzle.org/7.1/redhat/$releasever/source
   enabled=1
   gpgcheck=0

**$releasever** uses RHEL 5 or RHEL 6, and **$basearch** is the architecture 
(i386 or x86_64).

*Fedora*

.. code-block:: ini

   [drizzle]
   name=drizzle
   baseurl=http://download.drizzle.org/7.1/fedora/$releasever/$basearch/
   enabled=1
   gpgcheck=0

   [drizzle-src]
   name=drizzle-src
   baseurl=http://download.drizzle.org/7.1/fedora/$releasever/source
   enabled=1
   gpgcheck=0

**$releasever** uses the Fedora version (currently 13 or 14), and **$basearch** 
is the architecture (i386 or x86_64).

.. note::

    At the time of this writing, Fedora packages were not yet released for 
    Drizzle 7.1 series.


Installation
------------

You can then install Drizzle by running the following command:

.. code-block:: bash

   sudo yum install drizzle-server drizzle-client

Note: In the Drizzle 7-stable repository, the packages are named 
drizzle7-server and drizzle7-client.