- 相關(guān)推薦
Linux掛載iscsi存儲的方式
Linux掛載iscsi存儲的方式
iscsi 提供給Linux掛載有兩種方式,一種通過iscsi 協(xié)議的ip映射,一種通過文件共享 nfs掛載。其中通過iscsi 協(xié)議的ip映射 方式掛載到Linux中以磁盤形式展現(xiàn),ip映射之后還需要對該磁盤分區(qū),并格式化分區(qū)。
掛載步驟:
1:檢查iscsi rpm包
2:啟動iscsi服務(wù)并設(shè)置開機自啟動
3:查找存儲對外提供的邏輯卷
4:映射邏輯卷到Linux系統(tǒng)中
5:設(shè)置開機自動映射
6:對映射出來的磁盤進行分區(qū)
7:分區(qū)之后進行格式化
8:掛載分區(qū)
注意:Linux格式化完之后,邏輯卷的.系統(tǒng)文件就是Linux類型的文件系統(tǒng)了,這個邏輯卷如果要掛在到window服務(wù)器上就需要將這個邏輯卷沖新格式化,格式化之后的系統(tǒng)就是window的系統(tǒng)文件類型。總之,通過ip映射的iscsi存儲不能同時掛載到Linux和window中,如果需要做共享,那么最好是將存儲做成文件共享的lun。
1、檢查iscsi rpm包
復(fù)制內(nèi)容到剪貼板 rpm-qa|grepiscsi
安裝rpm包
復(fù)制內(nèi)容到剪貼板 [root@qionghai11gPackages]#rpm-Uvhiscsi-initiator-utils-6.2.0.873-2.el6.x86_64.rpm
2、啟動iscsi服務(wù)并設(shè)置開機自啟動
復(fù)制內(nèi)容到剪貼板 [root@qionghai11gPackages]#serviceiscsistart [root@qionghai11gPackages]#chkconfig--list|grepiscsi
3、查找存儲對外提供的邏輯卷
復(fù)制內(nèi)容到剪貼板 [root@qionghai11g~]#iscsiadm-mdiscovery-tsendtargets-p192.16.10.188:3260 Startingiscsid:[OK] 192.16.10.188:3260,1iqn.2004-01.com.storbridge:block02-wt 192.16.10.188:3260,1iqn.2004-01.com.storbridge:block01-wt
4、映射邏輯卷到Linux系統(tǒng)中
復(fù)制內(nèi)容到剪貼板 [root@qionghai11g~]#iscsiadm-mnode-Tiqn.2004-01.com.storbridge:block01-wt-p192.16.10.188:3260-l Logginginto[iface:default,target:iqn.2004-01.com.storbridge:block01-wt,portal:192.16.10.188,3260](multiple) Loginto[iface:default,target:iqn.2004-01.com.storbridge:block01-wt,portal:192.16.10.188,3260]successful. [root@qionghai11g~]#iscsiadm-mnode-Tiqn.2004-01.com.storbridge:block02-wt-p192.16.10.188:3260-l Logginginto[iface:default,target:iqn.2004-01.com.storbridge:block02-wt,portal:192.16.10.188,3260](multiple) Loginto[iface:default,target:iqn.2004-01.com.storbridge:block02-wt,portal:192.16.10.188,3260]successful.
5、設(shè)置開機自動映射
復(fù)制內(nèi)容到剪貼板 [root@qionghai11g~]#iscsiadm-mnode-Tiqn.2004-01.com.storbridge:block02-wt-p192.16.10.188:3260--opupdate-nnode.startup-vautomatic [root@qionghai11g~]#iscsiadm-mnode-Tiqn.2004-01.com.storbridge:block01-wt-p192.16.10.188:3260--opupdate-nnode.startup-vautomatic
這兩個是開機自動映射
6、對映射出來的磁盤進行分區(qū)
由于存儲容量是12T 大于2T,不能用不同分區(qū) fdisk ,只能用GPT分區(qū)
parted /dev/sdb 對/dev/sdb進行分區(qū)
print 打印信息,從中可以看出這個磁盤大小和分區(qū)格式
mklabel gpt
mkpart primary 0% 100%
print 從中可以看出這個磁盤分區(qū)格式已經(jīng)變了成GPT了
7、分區(qū)之后進行格式化
復(fù)制內(nèi)容到剪貼板 [root@oracle11g~]#mkfs.ext3/dev/sdb mke2fs1.39(29-May-2006) /dev/sdbisentiredevice,notjustonepartition! Proceedanyway?(y,n)y Filesystemlabel= OStype:Linux Blocksize=4096(log=2) Fragmentsize=4096(log=2) 1708998656inodes,3417968064blocks 170898403blocks(5.00%)reservedforthesuperuser Firstdatablock=0 Maximumfilesystemblocks=4294967296 104309blockgroups 32768blockspergroup,32768fragmentspergroup 16384inodespergroup Superblockbackupsstoredonblocks: 32768,98304,163840,229376,294912,819200,884736,1605632,2654208, 4096000,7962624,11239424,20480000,23887872,71663616,78675968, 102400000,214990848,512000000,550731776,644972544,1934917632, 2560000000 Writinginodetables:done Creatingjournal(32768blocks):done Writingsuperblocksandfilesystemaccountinginformation:done done Thisfilesystemwillbeautomaticallycheckedevery23mountsor 180days,whichevercomesfirst.Usetune2fs-cor-itooverride.
8、掛載分區(qū)
復(fù)制內(nèi)容到剪貼板 [root@qionghai11g~]#cd/var/www/html/ [root@qionghai11ghtml]#mkdirkk1kk2 [root@qionghai11gmnt]#mount/dev/sdb1/var/www/html/kk1/
【Linux掛載iscsi存儲的方式】相關(guān)文章:
Linux系統(tǒng)中怎么掛載外界設(shè)備03-06
Linux系統(tǒng)重新掛載var分區(qū)的方法11-17
簡單地講解Linux的文件系統(tǒng)及相關(guān)的掛載命令02-28
Linux系統(tǒng)怎么正確關(guān)機方式11-18
Linux系統(tǒng)兩種網(wǎng)絡(luò)交換方式03-03
linux系統(tǒng)命令11-23
linux實習(xí)心得11-11
linux系統(tǒng)命令(經(jīng)典)01-25
Linux的備份方法03-09