Setup a Ubuntu Server with iSCSI and MPIO to connect to an iSCSI Target in DSS V7

preview_player
Показать описание
- Installing the iSCSI initiator and dm-multipath
- Connection to the iSCSI target on Open-E DSS V7
- Configuring dm-multipath
- Format the volume and mounting from the Ubuntu Server
- Verify the performance

Рекомендации по теме
Комментарии
Автор

some useful commands from the video for ease of reference (given that they haven't been provided in the description):
sudo -i
apt-get update
apt-get install open-iscsi multipath-tools mc
ifconfig eth1 172.10.1.10/24 up
iscsiadm --mode discovery --type sendtargets --portal 172.10.1.11

wertyhog
Автор

the final set of useful commands from the video:

dd if=/dev/mapper/open-e-test of=/dev/null bs=1M count=8192
mkfs.ext3 /dev/mapper/open-e-test
mkdir /mnt/open-e-test
mount /dev/mapper/open-e-test /mnt/open-e-test

wertyhog