Linux光纖卡配置
1.首先根據光纖卡類型加載對應的驅動。我這裡常用的是QLogic和Brocade光纖卡
[root@rhcsasm2 host3]# lspci | grep Fibre --查看光纖卡類型
05:00.0 Fibre Channel: Brocade Communications Systems, Inc. 415/815/41B/81B 4Gbps/8Gbps PCIe single port FC HBA (rev 01)
05:00.1 Fibre Channel: Brocade Communications Systems, Inc. 415/815/41B/81B 4Gbps/8Gbps PCIe single port FC HBA (rev 01)
08:00.0 Fibre Channel: Brocade Communications Systems, Inc. 415/815/41B/81B 4Gbps/8Gbps PCIe single port FC HBA (rev 01)
08:00.1 Fibre Channel: Brocade Communications Systems, Inc. 415/815/41B/81B 4Gbps/8Gbps PCIe single port FC HBA (rev 01)
2.有驅動的系統,有這個/sys/class/fc_host/目錄。否則是沒有加載驅動
在/sys/class/fc_host/路徑下可以看到加載上來的光纖卡
[root@rhcsasm2 fc_host]# ls
host3 host4
[root@rhcsasm2 host3]# cat port_name
0x100000051efb2c03
我們根據這個序號去光纖交換機上設置對應的alias和劃分Zone
3.光纖交換機上設置alias和劃分Zone
4.EVA存儲上present服務器和劃分vdisk
5.編輯/etc/multipath.conf文件,格式如下
multipaths {
multipath {
wwid 3 600508b400074b920000d00001a00000 --這裡是EVA上劃分過來的盤的UUID
alias RHCSASM1_ARCH --設置別名,用於我們自己識別
path_grouping_policy group_by_prio
path_selector "round-robin 0"
failback immediate
rr_weight uniform
no_path_retry 18
}
multipath {
wwid 3 600508b400074b920000d00001980000
alias RHCSASM1_D00
path_grouping_policy group_by_prio
path_selector "round-robin 0"
failback immediate
rr_weight uniform
no_path_retry 18
}
}
編輯完畢之後格式化多路徑
這裡如果multipath命令沒有的話,說明是沒有對應的包,要安裝multipath的包
device-mapper-multipath
#multipath -v2(格式化路徑)
#multipath -ll(顯示多路徑信息)
#chkconfig multipathd on(設置開機啟動)
這樣我們就把EVA上的盤掛載到了我們的服務器上面