This section describes how to create a DataKeeper resource. DataKeeper resources provide the ability to build highly available clusters without the use of shared storage.

System Configuration

The environment created in this guide has the following two-node configuration. Create a mirror on your new file system and protect it with LifeKeeper.

Make sure that your configuration satisfies the following DataKeeper requirements.
Hardware and Software Requirements

Perform the following steps on “target1” and “target2”

  1. Checking the device
# parted /dev/sdb print
Model: VMware Virtual disk (scsi)
Disk /dev/sdb: 1074MB
Sector size (logical/physical): 512B/512B
Partition Table: gpt
Disk Flags:
 
Number  Start  End  Size  File system  Name  Flags
  1. Creating a partition
    Create a partition in /dev/sdb of the device.
# parted -s /dev/sdb mklabel gpt
# parted /dev/sdb mkpart primary 0% 100%
# parted /dev/sdb print
Model: VMware Virtual disk (scsi)
Disk /dev/sdb: 1074MB
Sector size (logical/physical): 512B/512B
Partition Table: gpt
Disk Flags:
 
Number  Start   End     Size    File system  Name     Flags
 1      1049kB  1073MB  1072MB  ext4         primary

Perform the following steps on the “target1”

  1. Creating a resource
    Execute the following command:
[target1]# lkcli resource create dk --tag dk-tag --mode synchronous --hierarchy new --device /dev/sdb1 --fstype xfs --mount_point /mnt/dk --fstag fs-tag

Resource settings

Item Input Value
--tag DataKeeper resource tag name
--mode Replication type
--hierarchy Type of data replication to create
--device Source disk or partition
--fstype File system type
--mount_point Mount point
--fstag File system resource tag name
  1. Extending a DataKeeper resource
    Execute the following command:
[target1]# lkcli resource extend dk --tag dk-tag --dest target2 --mode synchronous --laddr 10.1.6.88 --raddr 10.1.6.89

Resource settings

Item Input Value
--tag Tag name of the created DataKeeper resource
--dest The hostname of the target server where the resource hierarchy is extended
--mode Replication type
--laddr IP address on the local machine to be set for the communication path
--raddr IP address on the remote machine to be set for the communication path
  1. Extending a file system resource
    Execute the following command:
[target1]# lkcli resource extend fs --tag fs-tag --dest target2

Resource settings

Item Input Value
--tag Tag name of the created file system resource
--dest The hostname of the target server where the resource hierarchy is extended
  1. Checking the resource
    After creating and expanding the resource, run the following command.
    The resource information is returned.
[target1]# lkcli status -q
 
LOCAL   TAG           ID                                   STATE     PRIO  PRIMARY
target1 fs-tag        /mnt/dk                              ISP          1  target1
target1  dk-tag       36000c292eb0c693b2efb44ed56556636-1  ISP          1  target1

A DataKeeper resource is automatically created with the file system resource dependent on the upper level as shown above.

  1. Check the mirroring
    Once the DataKeeper resource has been created, a full resync will be performed.
    When the status is Fully Operational, the full resync is completed.
[target1]# lkcli mirror status --tag dk-tag

Resource settings

Item Input Value
--tag Tag name of the created DataKeeper resource

Export/Import a DataKeeper Resource

Refer to Replicate the Existing Cluster Settings to replicate the DataKeeper resource and the file system resource. Execute import with the file system unmounted on each node.

Feedback

Was this helpful?

Yes No
You indicated this topic was not helpful to you ...
Could you please leave a comment telling us why? Thank you!
Thanks for your feedback.

Post your comment on this topic.

Post Comment