Generally after presenting disks to a SAN connected LINUX Server - you do the following:
SCAN:
for hba in `ls -d /sys/class/fc_host/host*`;do
FCHOST=`basename $hba`
echo "Scanning $FCHOST"
echo "- - -" > /sys/class/scsi_host/${FCHOST}/scan
done
Then:
multipath -ll
If you need to give your Disks friednlier names like /dev/mapper/EVA08_DB_dsk001 - then add/edit www alias entries in /etc/multipath.conf and do "multipath -v2". Finish off with "multipath -ll" and check if mapper /path entries are present in /dev/mapper and /dev/mpath.
Finish off with using the disk -- paritioning it wholly or whatever are your standards...
The abobve assumes you do not have the Array's proprietary MultiPathing solution engaged -- like PowerPath from EMC or HDLM from Hitachi, etc...
HTH.
Hakuna Matata.