1837968 Members
2714 Online
110124 Solutions
New Discussion

Disk Stripes

 
SOLVED
Go to solution
Jason_309
Regular Advisor

Disk Stripes

How do you tell what your systems stripe level is?
7 REPLIES 7
A. Clay Stephenson
Acclaimed Contributor
Solution

Re: Disk Stripes

I assume that you are talking about logical volumes under LVM. lvdisplay /dev/vg05/lvol1 will display the number of stripes and the Stripe Size.
If it ain't broke, I can fix that.
Jason_309
Regular Advisor

Re: Disk Stripes

Thank you. The way the logical volumes have been setup on the system i am now workig on they have no stripes. We are running Oracle financials and have been told the disks need to be striped. What is the best way to do this?
A. Clay Stephenson
Acclaimed Contributor

Re: Disk Stripes

The stripe size and the number of physical volumes to stripe across is set when the logical volume is created. You first need to create a volume group and include multiple physical disks or LUN's. You then allocate each logical volume striping across these PV's typically in 64KB chunks. In general, you want to strip across as many i/o channels as possible.
If it ain't broke, I can fix that.
A. Clay Stephenson
Acclaimed Contributor

Re: Disk Stripes

I should add man vgcreate, lvcreate, vgextend for details. You can also do all of this from within SAM -> Disks & Filesystems.
If it ain't broke, I can fix that.
Jason_309
Regular Advisor

Re: Disk Stripes

So if the LV groups are setup now with no stripes i still will need to start over?
A. Clay Stephenson
Acclaimed Contributor

Re: Disk Stripes

Yes. If there are data on the existing LVOL's, you will need to back it up first. Your other option, if you have available disk is to add more disks to your VG and then create a new LVOL with stripes and copy the data over. Since, you don't seem to be too familar with these procedures, I would strongly suggest that you get a backup first.
If it ain't broke, I can fix that.
Jason_309
Regular Advisor

Re: Disk Stripes

Thanks