使用OpenFiler實現共享存儲

使用OpenFiler實現共享存儲node

1、什麼是OpenFiler

Openfiler是在rPath Linux基礎上開發的,它可以做爲一個獨立的Linux操做系統發行。Openfiler是一款很是好的存儲管理操做系統,開源免費,經過web界面對存儲磁盤的管理,支持如今流行的網絡存儲技術IP-SANNAS,支持iSCSIInternet Small Computer System Interface, 學名ISCSI HBA)、NFSSMB/CIFSFTP等協議。web

OpenFiler下載地址:http://www.openfiler.com/瀏覽器

2、使用VMWare 安裝OpenFiler

使用VMWare workstation 12新建一臺虛擬機,操做系統類型選擇RHEL5_x64,磁盤大小爲10g,內存1G,網絡類型選擇僅主機模式。將下載好的OpenFiler放入虛擬光驅並開機。進入以下界面網絡

clip_image002[5]clip_image004[4]

clip_image006[4]clip_image008[4]clip_image010[4]clip_image012[4]clip_image014[4]clip_image016[4]clip_image018[4]

安裝完成後點擊重啓session

 

重啓後界面以下oracle

clip_image020[4]

3、使用OpenFiler搭建虛擬共享存儲

爲在虛擬機中添加一塊10G的硬盤,做爲共享盤spa

打開瀏覽器輸入開機後畫面中提示的地址進行管理,默認用戶名爲openfiler,密碼爲passwordclip_image021[4]操作系統

 

建立一個新的VG3d

clip_image023[5]clip_image025[4]clip_image027[4]

clip_image029[4]clip_image031[4]clip_image033[4]clip_image035[4]

 

clip_image037[4]clip_image039[4]clip_image041[4]

映射成功,接下來在客戶端進行掛載code

4、在客戶端掛載

打開一臺虛擬機做爲客戶端

使用yum安裝ISCSI initiator

[root@oracle ~]# yum install iscsi-initiator-utils -y
[root@oracle ~]# service iscsi start

發現iSCSI目標

[root@oracle ~]# iscsiadm -m discovery -t sendtargets -p 192.168.100.50:3260
Starting iscsid:                                           [  OK  ]
192.168.100.50:3260,1 iqn.2006-01.com.openfiler:tsn.c6fc8c4f1e65

登錄target

[root@oracle ~]# iscsiadm -m node -p 192.168.100.50:3260 -l
Logging in to [iface: default, target: iqn.2006-01.com.openfiler:tsn.c6fc8c4f1e65, portal: 192.168.100.50,3260] (multiple)
Login to [iface: default, target: iqn.2006-01.com.openfiler:tsn.c6fc8c4f1e65, portal: 192.168.100.50,3260] successful.

此時使用fdisk -l可查看到系統上多了一塊磁盤

[root@oracle ~]# fdisk -l

格式化磁盤並進行掛載

[root@oracle ~]# mkfs.ext4 /dev/sdd
[root@oracle ~]# mount /dev/sdd /mnt
[root@oracle ~]# mount
/dev/sda3 on / type ext4 (rw)
proc on /proc type proc (rw)
sysfs on /sys type sysfs (rw)
devpts on /dev/pts type devpts (rw,gid=5,mode=620)
tmpfs on /dev/shm type tmpfs (rw)
/dev/sda1 on /boot type ext4 (rw)
none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw)
/dev/sr0 on /mnt/rom type iso9660 (ro)
/dev/sdd on /mnt type ext4 (rw)

開啓另外一臺虛擬機執行一樣的操做,而後進行掛載

此時兩臺主機共用一塊硬盤

註銷iSCSI

[root@oracle ~]# iscsiadm --mode node --targetname iqn.2006-01.com.openfiler:tsn.c6fc8c4f1e65 --portal 192.168.100.50:3260 --logout
Logging out of session [sid: 1, target: iqn.2006-01.com.openfiler:tsn.c6fc8c4f1e65, portal: 192.168.100.50,3260]
Logout of [sid: 1, target: iqn.2006-01.com.openfiler:tsn.c6fc8c4f1e65, portal: 192.168.100.50,3260] successful.
相關文章
相關標籤/搜索