banner
李大仁博客

李大仁博客

天地虽大,但有一念向善,心存良知,虽凡夫俗子,皆可为圣贤。

[Ubuntu] Using open-iscsi to initiate an iSCSI connection to a Target

I have multiple VPS servers hosted with different cloud providers, and regularly backing up server data has become a tricky problem. Normally, I would use NFS mounting, using s3fs-fuse to mount the S3 bucket to the local partition, and then write the files that need to be backed up to that partition.

However, the stability of S3 access has been very poor recently, even in AWS's home country, the United States. The partition mounted using s3fs-fuse is not stable for reading and writing, especially when dealing with a large number of files and continuous reading and writing.

Recently, I discovered that using AWS Storage Gateway allows the virtual machine to directly connect to the iscsi target and operate on the corresponding LUN and volume. The iscsi protocol, which uses a lower TCP/IP protocol than HTTP/S, is more stable compared to the s3fs method.

In addition, incoming traffic to AWS Storage Gateway is free, and only storage fees for S3 and EBS are charged.

Server version: Ubuntu 18.04 LTS
Device target: /dev/sdc

  1. Installing and configuring the iscsi initiator program
  2. Install open-iscsi and open-iscsi-utils
# Install open-iscsi and open-iscsi-utils
sudo apt-get install open-iscsi open-iscsi-utils
  1. Discover the iscsi target
# Discover the iscsi target
sudo iscsiadm -m discovery -t sendtargets -p XXX.XXX.XXX.XXX:3260
  1. Login to the target
# Login to the target
sudo iscsiadm -m node --targetname iqn.1997-05.com.amazon.XXXXXX -p XXX.XXX.XXX.XXX:3260 --login
  1. Mounting the hard disk
  2. Discover and partition/format the disk
fdisk -l
  1. Partition and format the LUN
fdisk /dev/sdc
mkfs.ext4 /dev/sdc1
  1. Mount to the specified location
sudo mkdir /mnt/backup
sudo mount /dev/sdc1 /mnt/backup
  1. Unmount the hard disk
sudo umount /mnt/backup
  1. Automatically connect to the LUN and mount the hard disk at startup
  2. Automatically login to the target. Modify /etc/iscsi/iscsid.conf to enable automatic login to the Gateway.
vi /etc/iscsi/iscsid.conf
# Enable automatic startup
node.startup = automatic
  1. Modify /etc/fstab to achieve automatic mounting at startup
# Get the UUID of the file system
tune2fs -l

# Modify /etc/fstab to achieve automatic mounting at startup
sudo vi /etc/fstab

# Add the following line to /etc/fstab
UUID=6dba31ff-xxxx-4430-bbd2-c1a932a53308 /backup ext4 \_netdev 0 0

A few things to note:

  1. If an unknown interruption occurs during the connection with AWS Storage Gateway, you can try forcing a device refresh.
udevadm test /sys/block/sdc
  1. If a connection timeout occurs, it is usually related to network quality. AWS recommends modifying iscsid.conf.
vi /etc/iscsi/iscsid.conf

# Modify the connection timeout parameters
node.session.timeo.replacement_timeout = 600
node.conn[0].timeo.noop_out_interval = 60
node.conn[0].timeo.noop_out_timeout = 600

Reference: Customize Linux iSCSI Settings

Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.