Setting Up a Chunk Server with a Journal on SSD
To set up a chunk server that stores a journal on an SSD drive, do the following:
-
Log in to the Node you want to act as a chunk server as root or as a user with root privileges. The Node must have at least one hard disk drive (HDD) and one solid state drive (SSD).
-
Download and install the following RPM packages:
pstorage-ctl
,
pstorage-libs-shared
, and
pstorage-chunk-server
.
These packages are available in the Parallels Cloud Server remote repository (this repository is automatically configured for your system when you install Parallels Cloud Server) and can be installed with this command:
# yum install pstorage-chunk-server
-
Make sure that cluster discovery is configured for the server. For details, see
Configuring Cluster Discovery
.
-
Authenticate the server in the cluster, if it is not yet authenticated:
# pstorage -c pcs1 auth-node
-
If required, prepare the SSD as described in
Preparing Disks for Parallels Cloud Storage
.
-
Create the chunk server configuration, repository, and the journal, for example:
# pstorage -c pcs1 make-cs -r /pstorage/pcs1-cs -j /ssd/pcs1/cs1 -s 30720
This command
-
Start the chunk server management service (
pstorage-csd
) and configure it to start automatically on the chunk server boot:
# service pstorage-csd start
# chkconfig pstorage-csd on
|