- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: hpvmmodify question...
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
03-23-2010 01:02 PM
03-23-2010 01:02 PM
hpvmmodify question...
i believe we can delete the lun from the current guest using the following command syntax:
hpvmmodify -P myvmm -d disk:scsi::disk:/dev/rdisk/disk5
the question is what has to be done (if anything) at the vm host server to make it available for different hosts, ideally we would like to add smaller sized luns to other windows guests. thanks in advance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2010 06:24 PM
03-23-2010 06:24 PM
Re: hpvmmodify question...
If you like to add smaller LUNs on your window server you may create a VG in HOST and assign LVs of specific size.
To add disk
hpvmmodify -P host_add -a disk:scsi::disk:/dev/rdisk/disk5
BR,
Kapil+
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2010 06:26 PM
03-23-2010 06:26 PM
Re: hpvmmodify question...
use
disk:scsi::lv:/dev/vg_name/rlvol_name
for VxVM use
disk:scsi::lv:/dev/vx/rdsk/dg_name/v_name
BR,
Kapil+
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2010 12:16 AM
03-24-2010 12:16 AM
Re: hpvmmodify question...
"what has to be done (if anything) at the vm host server to make it available for different hosts"
--> as previously said, just add it to the new host with :
hpvmmodify -P OtherHost -a disk:scsi::disk:/dev/rdisk/disk5
"ideally we would like to add smaller sized luns to other windows guests"
Several way to achieve this :
- You want to keep the original 1TB lun "as is" ... then create an LVM or VxVM volume with it and cut into several logical volumes. Each logical volumes will be presented to virtual guests with commands from Kapil's post.
- You absolutly wants that each VM backing stores relies on raw lun. If you have a centralized storage array ... just reduce (or ask your storage admin to do it) the size of the 1 TB lun before adding it to the new guest, (check with diskinfo the new size). Then create (or ask your storage admin to do it) new small luns at storage side. You will have to discover and identify (ioscan, insf, ...) these new LUNs before you add them to other guests.
I do think that second method is better in term of performance, isolation between each VM, and portability.
Eric
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2010 12:20 AM
03-24-2010 12:20 AM
Re: hpvmmodify question...
Virtual Disk Type Backing Storage Device
--------------------- -----------------------------------
Virtual Disk VM Host disk
Virtual LvDisk VM Host LVM or VxVM logical volume
Virtual FileDisk VM Host VxFS file
Configuring different virtual storage devices is well explained in chapter 7 of HP Integrity Virtual Machines Installation, Configuration, and Administration Book.
The book link is given below:
http://docs.hp.com/en/T2767-90105/T2767-90105.pdf
Regards,
Bhadresh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2010 05:24 AM
03-24-2010 05:24 AM
Re: hpvmmodify question...
a few other points...
in another post i read where a reboot was required,
http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1211908
what can we look for to avoid this?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2010 06:38 AM
03-24-2010 06:38 AM
Re: hpvmmodify question...
The problem described about HP-UX is that you can add new disk online, only to an existing virtual controller in the VM Guest. In other words to the same bus-device than an existing device like a disk.
I am not an expert with windows, but as far as I know, you can add online disks. What I don't know : does it depends or no to an existing virtual controllers or if a new controller can be online created ?
If you have a test Guest, just try and tell us.
Eric
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2010 06:50 AM
03-24-2010 06:50 AM
Re: hpvmmodify question...
********************
To "plan ahead," one can explicitly create the first two or three storage devices so that virtual controllers are established. For example,
hpvmcreate -P myvm \
-a disk:scsi:0,4,0:lv:
-a disk:scsi:0,5,0:lv:<2nd path> \
-a disk:scsi:0,6,0:lv:<3rd path>
That will create 3 controllers, allowing for up to 45 total virtual storage devices.
*******************
How many disk you want to add on a server.
BR,
Kapil+