San Basics for Redhat

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat San Basics for Redhat
# 1  
Old 05-04-2011
San Basics for Redhat

Hi All,

Need few answers

1) How to check HBA Card in rhel4/5/6.

2) How to HBA is faulty?

3) How to replace an HBA ?

4) How to reconfigure an HBA
# 2  
Old 05-04-2011
Your question is very open ended and vague.

If you want to see if you have an HBA card in RHEL a few ways would be to do the following:

lspci -vv | egrep -i 'brocade|emulex|qlogic'

As well, you should probably look in:

/sys/class/scsi_host/host?/model_desc


Checking if it is faulty is a determination that is dependent on the fault.

Changing one depends on the interface. If it is a blade, then it will possibly be a mezzanine card and that may be the job of the support team of the manufacturer. Otherwise you must have a level of hardware knowledge to remove the blade and the associated card.

if it is a server, it will likely be some PCI standard (PCI-X or PCIe) device. It is replaced like any other.

Normally, the HBA is not reconfigured in case of replacement. That is usually handled at the SAN controller and switch, where the zone is now configured for the new WWID/WWN (World Wide ID or World Wide Name, similar to a MAC address). At that point, the rezone would occur and the representation of the LUN would be done to map to the new device. A rescan might be in order for the devices.

You can either look for a script that is available online called "rescan-scsi-bus.sh" and pass it the appropriate arguments to rescan, or you can do the following at the command line:

Code:
for i in /sys/class/scsi_host/host*
do
echo '- - -' > $i/scan
done

that should represent the LUNs to you.

You should use some sort of multipath driver, such as the one provided with most Linux installs (dm-multipath) or powerpath, securepath, etc.

Last edited by mark54g; 05-04-2011 at 06:34 PM.. Reason: fixed syntax error
# 3  
Old 05-05-2011
Bug

Thanks Mark for your response.

Let me precise the requirements

1) Please let me know different supported HBAs on RedHat.
2) What Drivers are needed to configure them.
3) Is these are plug and play or we need to install vender software for same.

4) Please let me know few utilities to manage the same?
5) Even how to check wwn no for HBA in these.
# 4  
Old 05-05-2011
You are asking for a "What is everything I need to know about a SAN on RedHat" That is not a good question for here. Perhaps you need a book or training.

Contact the vendor (Red Hat) for supported hardware for their software. Contact the vendor (your SAN/HBA vendor) for everything else. Asking us when you are involving the tremendous expense of a SAN is likely going to cause you a failure in the future.
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Filesystems, Disks and Memory

Faster way: SAN hd to SAN hd copying

hi! i got a rhel 6.3 host that already have an xfs filesystem mounted from a SAN (let's call it SAN-1) whose size is 9TB. i will be receiving another SAN (let's call it SAN-2) storage of 15TB size. this new addition is physically on another SAN storage. SAN-1 is on a Pillar storage while the new... (6 Replies)
Discussion started by: rino19ny
6 Replies

2. UNIX for Advanced & Expert Users

Sort command results are different in Redhat 4 vs Redhat 5

Hi, I am having a text file with the following contents ########### File1 ########### some page1.txt text page.txt When I sort this file on Red Hat 5, then I get the following output ########### File1 ########### page1.txt page.txt some (3 Replies)
Discussion started by: sarbjit
3 Replies

3. AIX

IBM SAN TO SAN Mirroring

Has anyone tried SAN to SAN mirroring on IBM DS SAN Storage. DS5020 mentions Enhanced Remote Mirror to multi-LUN applications I wonder if Oracle High availibility can be setup using Remote Mirror option of SAN ? (1 Reply)
Discussion started by: filosophizer
1 Replies

4. UNIX for Dummies Questions & Answers

help me with basics

hello everyone i have to start with unix as it is a part of my training programme and i have to do a self study, i dont know where to start from. i need some basic questions to be answerd like why we use unix ? what is a terminal? what is an editor? why we write commands inside terminal? these... (4 Replies)
Discussion started by: aryancool
4 Replies

5. Red Hat

SAN Connected RedHat Server

I received 4 pre-loaded ready-to-go intel servers running RedHat Enterprise Linux 3 kernel version 2.6.9-22.18 build date june 29, 2006. They are equiped with QLOGIC 2400 dual-port HBA cards. I need to know what utilities or command-sets are available to check these cards out? How do I get their... (4 Replies)
Discussion started by: sallender
4 Replies

6. Solaris

Thoughts/experiences of SAN attaching V880 to EMC SAN

Hi everyone, I wonder if I can canvas any opinions or thoughts (good or bad) on SAN attaching a SUN V880/490 to an EMC Clarion SAN? At the moment the 880 is using 12 internal FC-AL disks as a db server and seems to be doing a pretty good job. It is not I/O, CPU or Memory constrained and the... (2 Replies)
Discussion started by: si_linux
2 Replies

7. IP Networking

SAN basics

Hi I like to learn and practice SAN, iSCSI. Could you sugges the appropriate tutorial and small tasks to practice SAN. Thankyou (1 Reply)
Discussion started by: kingskar
1 Replies

8. UNIX for Dummies Questions & Answers

UNIX Basics

I want to learn UNIX, but I have a few questions. If anybody could help me out I'd greatly appreciate it. First, I've decided I'm going to use Red Hat Linux and I've been told the only difference between 7.2 and the Professional (besides the price), is the tech support that you'll receive. Is... (2 Replies)
Discussion started by: paulSF
2 Replies
Login or Register to Ask a Question