This change moves the .rst files into the main adming-guide-cloud folder now conversion is complete. changes to the project config and to the openstack manuals to stop sync of .xml files are also needed. Change-Id: I498e8d6ac3cb80da413e23b14a0959abd58e7d79 Implements: blueprint reorganise-user-guides
6.4 KiB
Configure a GlusterFS back end
This section explains how to configure OpenStack Block Storage to use
GlusterFS as a back end. You must be able to access the GlusterFS shares
from the server that hosts the cinder volume service.
Note
The cinder volume service is named
openstack-cinder-volume on the following distributions:
- CentOS
- Fedora
- openSUSE
- Red Hat Enterprise Linux
- SUSE Linux Enterprise
In Ubuntu and Debian distributions, the cinder volume
service is named cinder-volume.
Mounting GlusterFS volumes requires utilities and libraries from the
glusterfs-fuse package. This package must be installed on
all systems that will access volumes backed by GlusterFS.
Note
The utilities and libraries required for mounting GlusterFS volumes
on Ubuntu and Debian distributions are available from the
glusterfs-client package instead.
For information on how to install and configure GlusterFS, refer to the GlusterDocumentation page.
Configure GlusterFS for OpenStack Block Storage
The GlusterFS server must also be configured accordingly in order to allow OpenStack Block Storage to use GlusterFS shares:
Log in as
rootto the GlusterFS server.Set each Gluster volume to use the same UID and GID as the
cinderuser:# gluster volume set VOL_NAME storage.owner-uid CINDER_UID # gluster volume set VOL_NAME storage.owner-gid CINDER_GIDWhere:
- VOL_NAME is the Gluster volume name.
- CINDER_UID is the UID of the
cinderuser. - CINDER_GID is the GID of the
cinderuser.
Note
The default UID and GID of the
cinderuser is 165 on most distributions.Configure each Gluster volume to accept
libgfapiconnections. To do this, set each Gluster volume to allow insecure ports:# gluster volume set VOL_NAME server.allow-insecure onEnable client connections from unprivileged ports. To do this, add the following line to
/etc/glusterfs/glusterd.vol:option rpc-auth-allow-insecure onRestart the
glusterdservice:# service glusterd restart
Configure Block Storage to use a GlusterFS back end
After you configure the GlusterFS service, complete these steps:
Log in as
rootto the system hosting the Block Storage service.Create a text file named
glusterfsin/etc/cinder/.Add an entry to
/etc/cinder/glusterfsfor each GlusterFS share that OpenStack Block Storage should use for back end storage. Each entry should be a separate line, and should use the following format:HOST:/VOL_NAMEWhere:
- HOST is the IP address or host name of the Red Hat Storage server.
- VOL_NAME is the name of an existing and accessible volume on the GlusterFS server.
Optionally, if your environment requires additional mount options for a share, you can add them to the share's entry:
HOST:/VOL_NAME -o OPTIONSReplace OPTIONS with a comma-separated list of mount options.
Set
/etc/cinder/glusterfsto be owned by the root user and thecindergroup:# chown root:cinder /etc/cinder/glusterfsSet
/etc/cinder/glusterfsto be readable by members of thecindergroup:# chmod 0640 FILEConfigure OpenStack Block Storage to use the
/etc/cinder/glusterfsfile created earlier. To do so, open the/etc/cinder/cinder.confconfiguration file and set theglusterfs_shares_configconfiguration key to/etc/cinder/glusterfs.On distributions that include openstack-config, you can configure this by running the following command instead:
# openstack-config --set /etc/cinder/cinder.conf \ DEFAULT glusterfs_shares_config /etc/cinder/glusterfsThe following distributions include
openstack-config:- CentOS
- Fedora
- openSUSE
- Red Hat Enterprise Linux
- SUSE Linux Enterprise
Configure OpenStack Block Storage to use the correct volume driver, namely
cinder.volume.drivers.glusterfs. To do so, open the/etc/cinder/cinder.confconfiguration file and set thevolume_driverconfiguration key tocinder.volume.drivers.glusterfs.On distributions that include
openstack-config, you can configure this by running the following command instead:# openstack-config --set /etc/cinder/cinder.conf \ DEFAULT volume_driver cinder.volume.drivers.glusterfs.GlusterfsDriverYou can now restart the service to apply the configuration.
To restart the
cindervolume service on CentOS, Fedora, openSUSE, Red Hat Enterprise Linux, or SUSE Linux Enterprise, run:# service openstack-cinder-volume restartTo restart the
cindervolume service on Ubuntu or Debian, run:# service cinder-volume restart
OpenStack Block Storage is now configured to use a GlusterFS back end.
Note
In /etc/cinder/cinder.conf, the
glusterfs_sparsed_volumes configuration key determines
whether volumes are created as sparse files and grown as needed or fully
allocated up front. The default and recommended value of this key is
true, which ensures volumes are initially created as sparse files.
Setting glusterfs_sparsed_volumes to false will result
in volumes being fully allocated at the time of creation. This leads to
increased delays in volume creation.
However, should you choose to set glusterfs_sparsed_volumes to false,
you can do so directly in /etc/cinder/cinder.conf.
On distributions that include openstack-config, you can
configure this by running the following command instead:
# openstack-config --set /etc/cinder/cinder.conf \
DEFAULT glusterfs_sparsed_volumes false
Warning
If a client host has SELinux enabled, the
virt_use_fusefs boolean should also be enabled if the host
requires access to GlusterFS volumes on an instance. To enable this
Boolean, run the following command as the root user:
# setsebool -P virt_use_fusefs on
This command also makes the Boolean persistent across reboots. Run this command on all client hosts that require access to GlusterFS volumes on an instance. This includes all compute nodes.