3-unit5 ISCSI
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了3-unit5 ISCSI相关的知识,希望对你有一定的参考价值。
#######iSCSI远程块存储########
** iSCSI概念
**提供iSCSI目标
**访问iSCSI存储
#######iSCSI概念#########
iSCSI(Internet SCSI)支持从客户端(发起端)通过IP向远程服务器上的ISCSI存储设备(目标)发送SCSI命令。iSCSI限定名称用于确定发起端和目标,并采用iqn.yyyy-mm.{reverse domain}:label的格式。默认情况下,网络通信是至iSCSI目标上的端口3260/tcp的明文。
**iSCSI发起端:需要访问原始SAN存储的客户端。
** iSCSI目标:从iSCSI服务器提供的远程硬盘磁盘,或“目标门户”
** iSCSI目标门户:通过网络向发起端提供目标的服务器。
**IQN:“iSCSI限定名称”。每个发起端和目标需要唯一名称进行标识,最好的做法是使用一个在Internet上可能独一无二的名称。
######################
##### iscsi ##########
######################
1.
iscsi 是直接对设备进行共享的服务
2.启动iscsi共享设备
在server上
建立一个lvm设备
yum install targetcli -y
systemctl start target
systemctl enable target
systemctl stop firewalld
targetcli
targetcli shell version 2.1.fb34
Copyright 2011-2013 by Datera, Inc and others.
For help on commands, type ‘help‘.
/> ls
/> /backstores/block create server1storage /dev/vg0/iscsi_storage ##创建一个设备
/> /iscsi create iqn.2017-06.com.example:strage1 ##创建一个target
/> /iscsi/iqn.2017-06.com.example:strage1/tpg1/luns create /backstores/block/server1storage ##创建逻辑单元号
/> /iscsi/iqn.2017-06.com.example:strage1/tpg1/acls create iqn.2017-06.com.example:server1storagekey ##创建访问控制列表
/> /iscsi/iqn.2017-06.com.example:strage1/tpg1/portals create 172.25.254.162 ##使用162主机的3260端口
/> exit ##退出
在desktop上
vim /etc/iscsi/initiatorname.iscsi
InitiatorName=iqn.2017-06.com.example:server1storagekey
iscsiadm -m discovery -t st -p 172.25.254.162
iscsiadm -m node -T iqn.2017-06.com.example:strage1 -p 172.25.254.162 -l
fdisk -l
##测试
客户端上出现一个新硬盘设备
3.挂载
vim /etc/fstab ##设置开机自动挂载
UUID="" /mnt xfs defaults,_netdev 0 0 ##_netdev表示开机挂载之前先启动网络服务
4.删除
在客户端
umount /mnt
vim /etc/fstab
iscsiadm -m node -T iqn.2017-06.com.example:strage1 -p 172.25.254.162 -u ## 登出iSCSI目标,以暂时断开连接
iscsiadm -m node -T iqn.2017-06.com.example:strage1 -p 172.25.254.162 -odelete ## 删除iSCSI目标的本地记录,以永久断开连接
##在服务端
在targetcli服务里执行
clearconfig confirm=True
以上是关于3-unit5 ISCSI的主要内容,如果未能解决你的问题,请参考以下文章
Microsoft iscsi initiator 功能及作用?