RHEL5 환경에서 iscsi 스토리지 환경 구축 하기
RHEL5 환경에서 iscsi 스토리지 환경 구축 하기
작성일 : 2010년 11월 3일
작성자 : 서진우
요점만 정리 ..
1. iscsi 서버 환경
RHEL5 부터 운영체제에 기본적으로 포함된 scsi-target-utils 패키지를 설치한다.
# vi /etc/tgt/targets.conf
————————————————————-
backing-store /dev/sdb1
</target>
————————————————————-
# chkconfig –level 345 tgtd on
# /etc/rc.d/init.d/tgtd start
# tgtadm –lld iscsi –op show –mode target
—————————————————————
Target 1: iqn.2008-09.com.example:server.target1
System information:
Driver: iscsi
State: ready
I_T nexus information:
I_T nexus: 4
Initiator: iqn.2011-09.com.example:233e4cfc
Connection: 0
IP Address: 192.168.123.2
I_T nexus: 5
Initiator: iqn.2011-09.com.example:102171f5
Connection: 0
IP Address: 192.168.123.2
LUN information:
LUN: 0
Type: controller
SCSI ID: IET 00010000
SCSI SN: beaf10
Size: 0 MB, Block size: 1
Online: Yes
Removable media: No
Readonly: No
Backing store type: null
Backing store path: None
Backing store flags:
LUN: 1
Type: disk
SCSI ID: IET 00010001
SCSI SN: beaf11
Size: 790485 MB, Block size: 512
Online: Yes
Removable media: No
Readonly: No
Backing store type: rdwr
Backing store path: /dev/sda6
Backing store flags:
Account information:
ACL information:
ALL
——————————————————————————-
2. Iscsi 클라이언트 환경
RHEL5 기본 패키지의 iscsi-initiator-utils 패키지 설치
# /etc/rc.d/init.d/iscsid start
# iscsiadm -m discovery -t st -p <Iscsi_server_ip>
# /etc/rc.d/init.d/iscsi start
# fdisk -l
# cat /proc/scsi/scsi
——————————————————————————-
Vendor: IET Model: VIRTUAL-DISK Rev: 0001
Type: Direct-Access ANSI SCSI revision: 05
——————————————————————————–