- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- load share
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2001 01:41 PM
10-09-2001 01:41 PM
load share
Four of my disks shows constantly very high i/o and at times reports disk bottleneck. Thes e disk are not on FC.
I've identified the disks and planing to add new FC disks modules to the system.
Once I add these disks how do i copy the data to new disks. These are production data (Oracle).
I am not expanding the logical volume but transfering entire data to new disks within the system instead.
What would be the best method to do this.
like creating PV, VG and logical volume etc...
I would like to use existing vg name, lv name and mount points for the new disks.
2. How many disks I can attach for a daisy chain
Thanks in advance..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2001 02:11 PM
10-09-2001 02:11 PM
Re: load share
One of the ways with minimum downtime would be the following,
pvcreate the new disks
vgextend the existing VG to the new disks
pvmove the existing lvs from current disks to the new disks
All this can be done oneline.
Once the data has been moved to the new disks, vgreduce the old disks from the VG.
You might want to check the man pages for (vgextend and pvmove)
But before you do this, make sure you have a backup of your databases.
-HTH
Ramesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2001 02:48 PM
10-09-2001 02:48 PM
Re: load share
To move the data from one disk to another, you have to proceed like this.
Connect the disk to the system, do a pvcreate on the disk, do vgextend to include the disk in the VG, do pvmove old disk --> new disk. the data is now on the new disk. you may have to do a vgreduce to remove the old disk from the VG and then disconnect the old disk from the system.
Hope this helps.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2001 03:00 PM
10-09-2001 03:00 PM
Re: load share
I concur with Ramesh and Sanjay. If you are too cautious ( I do for my management) about the data, you can mirror the existing logical volumes onto the FC60 and then break the mirror.
1) Add the new LUN from FC 60 to the volume group
2) Use the lvextend -m 1 /dev/vg??/lvol? /dev/dsk/cxtydz (new disk). Replace ?s and x,y,z with your settings.
3) Do an lvsplit, fsck and mount the backup copy (bydefault it will be lvol??b). Verify if the database is fine. Then remove the original logical volume and reduce the old PV from the volume group.
pvmove is also safe. You can go with it if you don't want the lengthy procedure.
-Sridhar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2001 03:41 PM
10-09-2001 03:41 PM
Re: load share
If this is not a concern, then you should be able to pvcreate the new disk(s) and vgextend the volume group to include the new disks. Then use pvmove to move the data from the old disks to the new and finally use vgreduce to get rid of the old disks from the VG.
-Santosh