Files
compute-hyperv/hyperv/nova
Claudiu Belu 7ec5802ed8 Hyper-V: Fixes live migration configdrive copy operation
Fixes the configdrive copy destination.

Change-Id: I0a8d0b5cac99bef4c32959d7dff3117a9bb3c61d
Closes-Bug: #1465443
2015-06-16 05:46:11 +03:00
..
2015-03-18 14:02:29 -07:00
2015-03-18 14:02:54 -07:00
2015-05-06 15:25:20 -07:00
2015-03-18 14:02:54 -07:00
2015-03-18 14:02:53 -07:00
2015-03-18 14:02:53 -07:00
2015-05-12 14:39:36 -07:00
2015-03-18 14:02:54 -07:00
2015-03-18 14:02:29 -07:00
2015-03-18 17:30:04 +02:00
2015-03-18 14:02:54 -07:00
2015-03-18 14:02:53 -07:00
2015-03-18 14:02:53 -07:00
2015-03-18 14:02:53 -07:00
2015-05-12 14:39:36 -07:00
2015-06-10 15:20:00 +03:00
2015-05-13 05:39:31 -07:00
2015-03-18 14:02:54 -07:00
2015-03-18 14:02:54 -07:00

Hyper-V Volumes Management

To enable the volume features, the first thing that needs to be done is to enable the iSCSI service on the Windows compute nodes and set it to start automatically.

sc config msiscsi start= auto net start msiscsi

In Windows Server 2012, it's important to execute the following commands to prevent having the volumes being online by default:

diskpart san policy=OfflineAll exit

How to check if your iSCSI configuration is working properly:

On your OpenStack controller:

1. Create a volume with e.g. "nova volume-create 1" and note the generated volume id

On Windows:

  1. iscsicli QAddTargetPortal <your_iSCSI_target>
  2. iscsicli ListTargets

The output should contain the iqn related to your volume: iqn.2010-10.org.openstack:volume-<volume_id>

How to test Boot from volume in Hyper-V from the OpenStack dashboard:

  1. Fist of all create a volume
  2. Get the volume ID of the created volume

3. Upload and untar to the Cloud controller the next VHD image: http://dev.opennebula.org/attachments/download/482/ttylinux.vhd.gz 4. sudo dd if=/path/to/vhdfileofstep3 of=/dev/nova-volumes/volume-XXXXX <- Related to the ID of step 2 5. Launch an instance from any image (this is not important because we are just booting from a volume) from the dashboard, and don't forget to select boot from volume and select the volume created in step2. Important: Device name must be "vda".