このコンテンツは選択した言語では利用できません。
Chapter 2. Setting Up Your Administration Server
Red Hat Ceph Storage uses an administration server for a Red Hat Ceph Storage repository, the Calamari monitoring and administration server, and your cluster’s Ceph configuration and authentication keys.
Visit https://access.redhat.com/articles/1560193 to obtain the Red Hat Ceph Storage installation ISO image file for CentOS 6.
Execute the following steps:
-
Download the
rhceph-1.2.3-centos-6-x86_64.iso
file. Using
sudo
, mount the image:sudo mount -o loop <path_to_iso>/rhceph-1.2.3-centos-6-x86_64.iso /mnt
sudo mount -o loop <path_to_iso>/rhceph-1.2.3-centos-6-x86_64.iso /mnt
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Using
sudo
, install the setup script.sudo yum install /mnt/ice_setup-*.rpm
sudo yum install /mnt/ice_setup-*.rpm
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create a working directory for your Ceph cluster configuration files and keys. Then, navigate to that directory. For example:
mkdir ~/ceph-config cd ~/ceph-config
mkdir ~/ceph-config cd ~/ceph-config
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Using
sudo
, run the setup script in the working directory. NOTE: You cannot run the setup script in/mnt
or a read-only directory or the script will crash. The script will output acephdeploy.conf
file, whichceph-deploy
will use to point to the local repository.sudo ice_setup -d /mnt
sudo ice_setup -d /mnt
Copy to Clipboard Copied! Toggle word wrap Toggle overflow The setup script performs the following operations:
-
It moves the RPMs to
/opt/ICE
and/opt/calamari
-
It creates a
.repo
file for theceph-deploy
andcalamari
packages pointing to a local path - It installs the Calamari server packages on the admin node
-
It installs the
ceph-deploy
package on the admin node; and -
It writes a
cephdeploy.conf
file to/opt/ICE
.
-
It moves the RPMs to
Using
sudo
, initialize the Calamari monitoring and administration server.sudo calamari-ctl initialize
sudo calamari-ctl initialize
Copy to Clipboard Copied! Toggle word wrap Toggle overflow NoteThe initialization script implies that you can only execute
ceph-deploy
when pointing to a remote site. You may also directceph-deploy
to your Calamari admin node (e.g,.ceph-deploy admin <admin-hostname>
). You can also use the Calamari admin node to run a Ceph daemon, although this is not recommended.
At this point, you should be able to access the Calamari web server via a web browser. Proceed to Storage Cluster Quick Start
guide.