25.2. iSCSI 초기자 생성
Red Hat Enterprise Linux 7에서 iSCSI 서비스는 기본적으로 지연됩니다. iscsiadm 명령을 실행한 후 서비스가 시작됩니다.
절차 25.7. iSCSI 초기자 생성
- iscsi-initiator-utils 를 설치합니다.
#
yum install iscsi-initiator-utils -y - ACL에 25.1.6절. “ACL 구성” 에 사용자 지정 이름이 제공된 경우 그에 따라
/etc/iscsi/initiatorname.iscsi
파일을 수정합니다. 예를 들어 다음과 같습니다.#
cat /etc/iscsi/initiatorname.iscsi InitiatorName=iqn.2006-04.com.example.node1#
vi /etc/iscsi/initiatorname.iscsi - 대상을 검색합니다.
#
iscsiadm -m discovery -t st -p target-ip-address 10.64.24.179:3260,1 iqn.2006-04.com.example:3260 - 3단계에서 검색한 대상 IQN을 사용하여 대상에 로그인합니다.
#
iscsiadm -m node -T iqn.2006-04.com.example:3260 -l Logging in to [iface: default, target: iqn.2006-04.com.example:3260, portal: 10.64.24.179,3260] (multiple) Login to [iface: default, target: iqn.2006-04.com.example:3260, portal: 10.64.24.179,3260] successful.이 절차는 25.1.6절. “ACL 구성” 에 설명된 대로 특정 이니시에이터 이름을 ACL에 추가하는 한 동일한 LUN에 연결된 수의 초기화기에 대해 따를 수 있습니다. - iSCSI 디스크 이름을 찾아서 이 iSCSI 디스크에서 파일 시스템을 만듭니다.
#
grep "Attached SCSI" /var/log/messages#
mkfs.ext4/dev/disk_name
disk_name 을/var/log/messages
에 표시된 iSCSI 디스크 이름으로 교체합니다. - 파일 시스템을 마운트합니다.
#
mkdir /mount/point#
mount/dev/disk_name
/mount/point/mount/point 를 파티션의 마운트 지점으로 바꿉니다. - 시스템이 부팅될 때 자동으로 파일 시스템을 마운트하도록
/etc/fstab
를 편집합니다.#
vim /etc/fstab/dev/disk_name
/mount/point ext4 _netdev 0 0disk_name 을 iSCSI 디스크 이름으로 교체합니다. - 대상에서 로그아웃합니다.
#
iscsiadm -m node -T iqn.2006-04.com.example:3260 -u