2012-06-26 15:21:05 +00:00
|
|
|
===========================
|
|
|
|
Configuring RADOS Gateway
|
|
|
|
===========================
|
|
|
|
|
|
|
|
Before you can start RADOS Gateway, you must modify your ``ceph.conf`` file
|
|
|
|
to include a section for RADOS Gateway You must also create an ``rgw.conf``
|
|
|
|
file in the ``/etc/apache2/sites-enabled`` directory. The ``rgw.conf``
|
|
|
|
file configures Apache to interact with FastCGI.
|
|
|
|
|
2012-09-17 23:00:58 +00:00
|
|
|
|
2012-06-26 15:21:05 +00:00
|
|
|
Add a RADOS GW Configuration to ``ceph.conf``
|
2012-09-17 23:00:58 +00:00
|
|
|
=============================================
|
2012-06-26 15:21:05 +00:00
|
|
|
|
|
|
|
Add the RADOS Gateway configuration to your ``ceph.conf`` file. The RADOS
|
|
|
|
Gateway configuration requires you to specify the host name where you installed
|
|
|
|
RADOS Gateway, a keyring (for use with cephx), the socket path and a log file.
|
|
|
|
For example::
|
|
|
|
|
|
|
|
[client.radosgw.gateway]
|
|
|
|
host = {host-name}
|
2012-07-02 20:05:26 +00:00
|
|
|
keyring = /etc/ceph/keyring.rados.gateway
|
|
|
|
rgw socket path = /tmp/radosgw.sock
|
2012-06-26 15:21:05 +00:00
|
|
|
log file = /var/log/ceph/radosgw.log
|
|
|
|
|
2012-09-17 23:00:58 +00:00
|
|
|
|
|
|
|
Deploy ``ceph.conf``
|
|
|
|
====================
|
|
|
|
|
2012-06-26 15:21:05 +00:00
|
|
|
If you deploy Ceph with ``mkcephfs``, manually redeploy ``ceph.conf`` to the
|
|
|
|
hosts in your cluster. For example::
|
|
|
|
|
|
|
|
cd /etc/ceph
|
|
|
|
ssh {host-name} sudo /etc/ceph/ceph.conf < ceph.conf
|
|
|
|
|
2012-09-17 23:00:58 +00:00
|
|
|
|
2012-09-18 18:15:37 +00:00
|
|
|
Create Data Directory
|
|
|
|
=====================
|
|
|
|
|
|
|
|
The ``mkcephfs`` deployment script may not create the default RGW data
|
|
|
|
directory. Create data directories for each instance of a ``radosgw`` daemon (if
|
|
|
|
you haven't done so already). The ``host`` variables in the ``ceph.conf`` file
|
|
|
|
determine which host runs each instance of a ``radosgw`` daemon. The typical form
|
|
|
|
specifes the daemon ``radosgw``, the cluster name and the daemon ID.
|
|
|
|
|
|
|
|
sudo mkdir -p /var/lib/ceph/radosgw/{$cluster}-{$id}
|
|
|
|
|
|
|
|
Using the exemplary ``ceph.conf`` settings above, you would execute the following::
|
|
|
|
|
|
|
|
sudo mkdir -p /var/lib/ceph/radosgw/ceph-radosgw.gateway
|
2012-09-17 23:00:58 +00:00
|
|
|
|
|
|
|
|
2012-06-26 15:21:05 +00:00
|
|
|
Create ``rgw.conf``
|
2012-09-17 23:00:58 +00:00
|
|
|
===================
|
2012-06-26 15:21:05 +00:00
|
|
|
|
|
|
|
Create an ``rgw.conf`` file on the host where you installed RADOS Gateway
|
2012-09-17 23:00:58 +00:00
|
|
|
under the ``/etc/apache2/sites-available`` directory.
|
2012-06-26 15:21:05 +00:00
|
|
|
|
2012-07-02 20:05:26 +00:00
|
|
|
We recommend deploying FastCGI as an external server, because allowing
|
|
|
|
Apache to manage FastCGI sometimes introduces high latency. To manage FastCGI
|
|
|
|
as an external server, use the ``FastCgiExternalServer`` directive.
|
|
|
|
See `FastCgiExternalServer`_ for details on this directive.
|
|
|
|
See `Module mod_fastcgi`_ for general details. ::
|
2012-06-26 15:21:05 +00:00
|
|
|
|
2012-07-02 20:05:26 +00:00
|
|
|
FastCgiExternalServer /var/www/s3gw.fcgi -socket /tmp/radosgw.sock
|
2012-06-26 15:21:05 +00:00
|
|
|
|
2012-07-02 20:05:26 +00:00
|
|
|
.. _Module mod_fastcgi: http://www.fastcgi.com/drupal/node/25
|
2012-06-26 15:21:05 +00:00
|
|
|
.. _FastCgiExternalServer: http://www.fastcgi.com/drupal/node/25#FastCgiExternalServer
|
|
|
|
|
2012-07-02 20:05:26 +00:00
|
|
|
Once you have configured FastCGI as an external server, you must
|
2012-06-26 15:21:05 +00:00
|
|
|
create the virtual host configuration within your ``rgw.conf`` file. See
|
|
|
|
`Apache Virtual Host documentation`_ for details on ``<VirtualHost>`` format
|
|
|
|
and settings. Replace the values in brackets. ::
|
|
|
|
|
|
|
|
<VirtualHost *:80>
|
|
|
|
ServerName {fqdn}
|
|
|
|
ServerAdmin {email.address}
|
|
|
|
DocumentRoot /var/www
|
|
|
|
</VirtualHost>
|
|
|
|
|
|
|
|
.. _Apache Virtual Host documentation: http://httpd.apache.org/docs/2.2/vhosts/
|
|
|
|
|
|
|
|
RADOS Gateway requires a rewrite rule for the Amazon S3-compatible interface.
|
|
|
|
It's required for passing in the ``HTTP_AUTHORIZATION env`` for S3, which is
|
|
|
|
filtered out by Apache. The rewrite rule is not necessary for the OpenStack
|
|
|
|
Swift-compatible interface. Turn on the rewrite engine and add the following
|
|
|
|
rewrite rule to your Virtual Host configuration. ::
|
|
|
|
|
|
|
|
RewriteEngine On
|
2012-07-02 20:05:26 +00:00
|
|
|
RewriteRule ^/([a-zA-Z0-9-_.]*)([/]?.*) /s3gw.fcgi?page=$1¶ms=$2&%{QUERY_STRING} [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
|
2012-06-26 15:21:05 +00:00
|
|
|
|
|
|
|
Since the ``<VirtualHost>`` is running ``mod_fastcgi.c``, you must include a
|
|
|
|
section in your ``<VirtualHost>`` configuration for the ``mod_fastcgi.c`` module.
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
<VirtualHost *:80>
|
|
|
|
...
|
|
|
|
<IfModule mod_fastcgi.c>
|
|
|
|
<Directory /var/www>
|
|
|
|
Options +ExecCGI
|
|
|
|
AllowOverride All
|
|
|
|
SetHandler fastcgi-script
|
|
|
|
Order allow,deny
|
|
|
|
Allow from all
|
|
|
|
AuthBasicAuthoritative Off
|
|
|
|
</Directory>
|
|
|
|
</IfModule>
|
|
|
|
...
|
|
|
|
</VirtualHost>
|
|
|
|
|
|
|
|
See `<IfModule> Directive`_ for additional details.
|
|
|
|
|
|
|
|
.. _<IfModule> Directive: http://httpd.apache.org/docs/2.2/mod/core.html#ifmodule
|
|
|
|
|
|
|
|
Finally, you should configure Apache to allow encoded slashes, provide paths for
|
|
|
|
log files and to trun off server signatures. ::
|
|
|
|
|
|
|
|
<VirtualHost *:80>
|
|
|
|
...
|
|
|
|
AllowEncodedSlashes On
|
|
|
|
ErrorLog /var/log/apache2/error.log
|
|
|
|
CustomLog /var/log/apache2/access.log combined
|
|
|
|
ServerSignature Off
|
|
|
|
</VirtualHost>
|
|
|
|
|
|
|
|
|
|
|
|
Enable the RADOS Gateway Configuration
|
2012-09-17 23:00:58 +00:00
|
|
|
======================================
|
2012-06-26 15:21:05 +00:00
|
|
|
|
|
|
|
Enable the site for ``rgw.conf``. ::
|
|
|
|
|
|
|
|
sudo a2ensite rgw.conf
|
|
|
|
|
|
|
|
Disable the default site. ::
|
|
|
|
|
|
|
|
sudo a2dissite default
|
|
|
|
|
|
|
|
|
2012-06-26 15:28:10 +00:00
|
|
|
Add a RADOS GW Script
|
2012-09-17 23:00:58 +00:00
|
|
|
=====================
|
2012-06-26 15:21:05 +00:00
|
|
|
|
|
|
|
Add a ``s3gw.fcgi`` file (use the same name referenced in the first line
|
|
|
|
of ``rgw.conf``) to ``/var/www``. The contents of the file should include::
|
|
|
|
|
|
|
|
#!/bin/sh
|
|
|
|
exec /usr/bin/radosgw -c /etc/ceph/ceph.conf -n client.rados.gateway
|
|
|
|
|
|
|
|
Ensure that you apply execute permissions to ``s3gw.fcgi``. ::
|
|
|
|
|
|
|
|
sudo chmod +x s3gw.fcgi
|
|
|
|
|
|
|
|
|
|
|
|
Generate a Keyring and Key for RADOS Gateway
|
2012-09-17 23:00:58 +00:00
|
|
|
============================================
|
2012-06-26 15:21:05 +00:00
|
|
|
|
|
|
|
You must create a keyring for the RADOS Gateway. For example::
|
|
|
|
|
|
|
|
sudo ceph-authtool --create-keyring /etc/ceph/keyring.rados.gateway
|
|
|
|
sudo chmod +r /etc/ceph/keyring.rados.gateway
|
|
|
|
|
|
|
|
Generate a key so that RADOS Gateway can identify a user name and authenticate
|
|
|
|
the user with the cluster. Then, add capabilities to the key. For example::
|
|
|
|
|
|
|
|
sudo ceph-authtool /etc/ceph/keyring.rados.gateway -n client.rados.gateway --gen-key
|
2012-07-02 20:05:26 +00:00
|
|
|
sudo ceph-authtool -n client.rados.gateway --cap osd 'allow rwx' --cap mon 'allow r' /etc/ceph/keyring.rados.gateway
|
2012-06-26 15:21:05 +00:00
|
|
|
|
2012-09-17 23:00:58 +00:00
|
|
|
|
2012-06-26 15:21:05 +00:00
|
|
|
Add to Ceph Keyring Entries
|
2012-09-17 23:00:58 +00:00
|
|
|
===========================
|
|
|
|
|
2012-06-26 15:21:05 +00:00
|
|
|
Once you have created a keyring and key for RADOS GW, add it as an entry in
|
|
|
|
the Ceph keyring. For example::
|
|
|
|
|
|
|
|
ceph -k /etc/ceph/ceph.keyring auth add client.rados.gateway -i /etc/ceph/keyring.rados.gateway
|
|
|
|
|
2012-09-17 23:00:58 +00:00
|
|
|
|
2012-06-26 15:21:05 +00:00
|
|
|
Restart Services and Start the RADOS Gateway
|
2012-09-17 23:00:58 +00:00
|
|
|
============================================
|
|
|
|
|
2012-06-26 15:21:05 +00:00
|
|
|
To ensure that all components have reloaded their configurations,
|
|
|
|
we recommend restarting your ``ceph`` and ``apaches`` services. Then,
|
|
|
|
start up the ``radosgw`` service. For example::
|
|
|
|
|
|
|
|
sudo service ceph restart
|
|
|
|
sudo service apache2 restart
|
|
|
|
sudo service radosgw start
|
|
|
|
|
2012-09-17 23:00:58 +00:00
|
|
|
|
2012-06-26 15:21:05 +00:00
|
|
|
Create a RADOS Gateway User
|
2012-09-17 23:00:58 +00:00
|
|
|
===========================
|
|
|
|
|
2012-06-26 15:21:05 +00:00
|
|
|
To use the REST interfaces, first create an initial RADOS Gateway user.
|
|
|
|
The RADOS Gateway user is not the same user as the ``client.rados.gateway``
|
|
|
|
user, which identifies the RADOS Gateway as a user of the RADOS cluster.
|
|
|
|
The RADOS Gateway user is a user of the RADOS Gateway.
|
|
|
|
|
|
|
|
For example::
|
|
|
|
|
2012-07-16 23:30:36 +00:00
|
|
|
sudo radosgw-admin user create --uid="{username}" --display-name="{Display Name}"
|
2012-06-26 15:21:05 +00:00
|
|
|
|
|
|
|
For details on RADOS Gateway administration, see `radosgw-admin`_.
|
|
|
|
|
|
|
|
.. _radosgw-admin: ../../man/8/radosgw-admin/
|
|
|
|
|
2012-09-18 18:15:37 +00:00
|
|
|
.. important:: Check the key output. Sometimes ``radosgw-admin``
|
|
|
|
generates a key with an escape (``\``) character, and some clients
|
|
|
|
do not know how to handle escape characters. Remedies include
|
|
|
|
removing the escape character (``\``), encapsulating the string
|
|
|
|
in quotes, or simply regenerating the key and ensuring that it
|
|
|
|
does not have an escape character.
|