使用OpenFiler實現共享存儲node
Openfiler是在rPath Linux基礎上開發的,它可以做爲一個獨立的Linux操做系統發行。Openfiler是一款很是好的存儲管理操做系統,開源免費,經過web界面對存儲磁盤的管理,支持如今流行的網絡存儲技術IP-SAN和NAS,支持iSCSI(Internet Small Computer System Interface, 學名ISCSI HBA)、NFS、SMB/CIFS及FTP等協議。web
OpenFiler下載地址:http://www.openfiler.com/瀏覽器
使用VMWare workstation 12新建一臺虛擬機,操做系統類型選擇RHEL5_x64,磁盤大小爲10g,內存1G,網絡類型選擇僅主機模式。將下載好的OpenFiler放入虛擬光驅並開機。進入以下界面網絡
安裝完成後點擊重啓session
重啓後界面以下oracle
爲在虛擬機中添加一塊10G的硬盤,做爲共享盤spa
打開瀏覽器輸入開機後畫面中提示的地址進行管理,默認用戶名爲openfiler,密碼爲password。操作系統
建立一個新的VG3d
映射成功,接下來在客戶端進行掛載code
打開一臺虛擬機做爲客戶端
使用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.