You can store your recovery points to an Internet Small Computer System Interface (iSCSI) volume. iSCSI is used to manage data transfer and storage over a network using the IP standard.
Verify that you have the latest release of the iSCSI-initiator software installed on your Backup Server. The initiator software on RHEL systems is packaged as iscsi-initiator-utils. The initiator software on SLES systems is packaged as open-iscsi.
Follow these steps:
/etc/init.d/iscsid start
The service on RHEL systems is named iscsid.
/etc/init.d/open-iscsi start
The service on SLES systems is named open-iscsi.
iscsiadm -m discovery -t sendtargets -p <ISCSI-SERVER-IP-ADDRESS>:<Port_Number>
The default port value of iSCSI target host is 3260.
#fdisk -l
iscsiadm -m node -T <iSCSI Target IQN name> -p <ISCSI-SERVER-IP-ADDRESS>:<Port_Number> -l
You can see a block device in the /dev directory of the backup source node.
#fdisk -l
You can see an additional device named /dev/sd<x> on the backup source node.
For example, consider the name of the device is /dev/sdc. This device name is used to create a partition and a file system in the following steps.
# fdisk /dev/sdc
If you have create only one partition, then use the following command to create a file system for the single partition:
# mkfs.ext3 /dev/sdc1
# mkdir /iscsi # mount /dev/sdc1 /iscsi
The new partition is mounted and the iSCSI volume is ready to be used as a backup storage in a backup job.
/dev/sdc1 /iscsi ext3 _netdev 0 0
The iSCSI volume is ready to be used as the backup storage.
Copyright © 2015 Arcserve.
All rights reserved.
|
|