LUN Presentation

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat LUN Presentation
# 1  
Old 04-26-2012
LUN Presentation

Hi,

I have presented a LUN from my EVA 4400 to a RHEL server.

The server sees 4 paths to the LUN which I can see from fdisk.

If I want to add this LUN to my OS i.e.

Code:
# fdisk /dev/sd???

....which actual device do I run fdisk against?

I am running multipath so is there another command (set of commands that I need to run?).

R,
D.
# 2  
Old 04-26-2012
What is the output of
Code:
fdisk -l

# 3  
Old 04-27-2012
Hi,

The following example is of 2 paths, but which one do create on the OS?

Code:
> 
> Disk /dev/sdg: 214.7 GB, 214748364800 bytes
> 255 heads, 63 sectors/track, 26108 cylinders
> Units = cylinders of 16065 * 512 = 8225280 bytes
> 
> 
> Disk /dev/sdh: 214.7 GB, 214748364800 bytes
> 255 heads, 63 sectors/track, 26108 cylinders
> Units = cylinders of 16065 * 512 = 8225280 bytes

Are there multipath command alternatives to the fdisk approach?
# 4  
Old 04-27-2012
You need to find out what the multipath device name is.

Depending on what multipathing software you are using, it could be something like /dev/emcpower<letter>

or /dev/mapper/dm-0,1,2,3 etc

That is the device you use, otherwise you are NOT using multipathing. You are only allowing multipath to run, but you are choosing a single path, and losing performance and reliability.
This User Gave Thanks to mark54g For This Post:
# 5  
Old 04-28-2012
Once I have the /dev/dm-<number> can you advise what commands I need to use in order to present the paths (LUN) to the OS?
# 6  
Old 04-29-2012
If you have a /dev/dm device, you HAVE presented the LUN. This is the multipath daemon's way of abstracting the multiple paths as one device.

That way, assuming you had /dev/sdb, sdc, sdd, sde as 4 paths to the same disk, you would use /dev/dm-0 as the path you choose, and if you lose /dev/sdc then you still have 3 active paths and no loss in access, but perhaps performance

(Besides, an EVA only allows access via one controller at a time until a failure causes it to switch controllers. It's really the "Speak and Spell" of SAN technology)

In the Command View EVA tool you present the device to the WWN(s) of the host (You did properly zone the switch, correct?)

After that, you should follow the instructions on this page:

Scan and Configure New LUNS on Redhat Linux (RHEL)

If you are using native multipathing, run multipath -ll

Make sure the system sees all the paths. You can also create a disk lable with e2label (That way, when you run blkid, you can see which devices correspond to which path, etc without multipath -ll)

Tutorial: e2label, fdisk, /etc/fstab, mount, linux rescue, rescue disk, CentOS should help you there.
# 7  
Old 05-02-2012
Thanks Mark54g,

Now once I have scanned in the new LUN on the OS how do I create a new FS from this space?

Can I use "fdisk" against the dm-<no> to present all paths to the OS?

.....or can I just pvcreate the /dev/dm-<no> and take it from there?

R,
D.
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Logs Presentation

Hello All, I am trying to capture system logs for specific tools run by users. So my script create logs from 10 different server.So is there any script & tool from that i can read or present them easily ?. Regards Ankit (1 Reply)
Discussion started by: ajaincv
1 Replies

2. OS X (Apple)

Wireless presentation system for mac

I am a system developer for a major university and currently trying to find out WPS software for mac that can connect a mac to a wireless projector server. The software functions with Win OS XP and 7. The server is a EDIMAX WP-S1100 WIRELESS PROJECTOR SERVER. (0 Replies)
Discussion started by: mobilemaster
0 Replies

3. Solaris

I have LUN ID, how to find disk relate to that LUN ID?

I have a list of LUN ID, my task is to find if disk has been added or not. How do I do that? I have been searching the forum and not able to find answer. thanks (4 Replies)
Discussion started by: uuontario
4 Replies

4. Shell Programming and Scripting

format date/time presentation

1) i am trying to print the timeframe of a log file using the start/end date/time being extracted from the file itself. my problem is how to convert the following numeric date format to the one that i prefer: Start time: 0204161129 End time : 0204171431 into: Start time: Apr 16 2002... (6 Replies)
Discussion started by: apalex
6 Replies
Login or Register to Ask a Question