Linux OS이하에서 iSCSI 로 할당 받은 SCSI Device 정보는 아래와 같이 확인이 가능하다. [root@DEDI-01 ~]# [root@DEDI-01 ~]# iscsiadm -m session tcp: [1] 10.217.97.231:3260,2 iqn.1986-03.com.sun:02:ea886003-c52b-cac6-ae11-dccde68a8d14 [root@DEDI-01 ~]# [root@DEDI-01 ~]# [root@DEDI-01 ~]# iscsiadm -m session -r 1 -P3 | grep -i "Attached SCSI devices" -B1 -A4 ************************ Attached SCSI devices: *******************..
Centos multipathd 데몬을 통한 iSCSI Storage Multipath 설정 [root@iSCSI-TEST ~]# [root@iSCSI-TEST ~]# [root@iSCSI-TEST ~]# for LIST in `ifconfig -a | grep eth | awk '{print $1}'`; do echo "${LIST} - `ethtool ${LIST} | grep 'Link detected'`"; done eth0 - Link detected: yes eth1 - Link detected: yes eth2 - Link detected: yes eth3 - Link detected: yes [root@iSCSI-TEST ~]# [root@iSCSI-TEST ~]# [root@iSCSI-T..
iSCSI를 사용할 Source 서버 IQN 정보 확인 Linux : cat /etc/iscsi/initiatorname.iscsi widnows : 시작->관리도구->ISCSI초기자->구성->초기자 이름 확인 [root@TEST02 ~]# [root@TEST02 ~]# cat /etc/iscsi/initiatorname.iscsi InitiatorName=iqn.1994-05.com.redhat:2f7377814fdc [root@TEST02 ~]#
※ 사용중인 iSCSI 로그인 정보를 삭제 [root@TEST02 ~]# [root@TEST02 ~]# [root@TEST02 ~]# iscsiadm -m node --targetname iqn.2013-09.192.168.137.10:storage.iscsi1 --logout Logging out of session [sid: 2, target: iqn.2013-09.192.168.137.10:storage.iscsi1, portal: 192.168.137.10,3260] Logout of [sid: 2, target: iqn.2013-09.192.168.137.10:storage.iscsi1, portal: 192.168.137.10,3260] successful. [root@TEST02 ~]# [r..
1. 별도의 Storage 장비가 없을 경우 Linux 에서 간단히 iSCSI 형태의 Shared Volume을 제공 가능 [root@TEST01 ~]# [root@TEST01 ~]# yum list | grep scsi iscsi-initiator-utils.x86_64 6.2.0.872-13.el5 installed iscsi-initiator-utils.x86_64 6.2.0.872-16.el5 base lsscsi.x86_64 0.17-3.el5 base scsi-target-utils.x86_64 1.0.14-2.el5 base [root@TEST01 ~]# [root@TEST01 ~]# yum info scsi-target-utils.x86_64 Loaded plugins: fastestmir..
※ Linux 에서 iSCSI 프로토콜을 이용하여 iSCSI Disk volume 마운트 [root@TEST02 ~]# [root@TEST02 ~]# chkconfig --list | grep iscsi iscsi 0:off 1:off 2:off 3:on 4:off 5:on 6:off iscsid 0:off 1:off 2:off 3:on 4:off 5:on 6:off [root@TEST02 ~]# [root@TEST02 ~]# service iscsi status iscsid (pid 1259) is running... [root@TEST02 ~]# [root@TEST02 ~]# service iscsid status iscsid (pid 1259) is running... [root@TEST02 ~]#..