~ubuntu-branches/ubuntu/quantal/nova/quantal-proposed

« back to all changes in this revision

Viewing changes to nova/virt/hyperv/README.rst

  • Committer: Package Import Robot
  • Author(s): Adam Gandelman, Adam Gandelman, Chuck Short
  • Date: 2012-08-27 15:37:18 UTC
  • mfrom: (1.1.60)
  • Revision ID: package-import@ubuntu.com-20120827153718-lj8er44eqqz1gsrj
Tags: 2012.2~rc1~20120827.15815-0ubuntu1
[ Adam Gandelman ]
* New upstream release.

[ Chuck Short ]
* debian/patches/0001-Update-tools-hacking-for-pep8-1.2-and-
  beyond.patch: Dropped we dont run pep8 tests anymore.
* debian/control: Drop pep8 build depends
* debian/*.upstart.in: Make sure we transition correctly from runlevel
  1 to 2. (LP: #820694)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Hyper-V Volumes Management
 
2
=============================================
 
3
 
 
4
To enable the  volume features, the first thing that needs to be done is to
 
5
enable the iSCSI service on the Windows compute nodes and set it to start
 
6
automatically.
 
7
 
 
8
sc config msiscsi start= auto
 
9
net start msiscsi
 
10
 
 
11
In Windows Server 2012, it's important to execute the following commands to
 
12
prevent having the volumes being online by default:
 
13
 
 
14
diskpart
 
15
san policy=OfflineAll
 
16
exit
 
17
 
 
18
How to check if your iSCSI configuration is working properly:
 
19
 
 
20
On your OpenStack controller:
 
21
 
 
22
1. Create a volume with e.g. "nova volume-create 1" and note the generated
 
23
volume id
 
24
 
 
25
On Windows:
 
26
 
 
27
2. iscsicli QAddTargetPortal <your_iSCSI_target>
 
28
3. iscsicli ListTargets
 
29
 
 
30
The output should contain the iqn related to your volume:
 
31
iqn.2010-10.org.openstack:volume-<volume_id>
 
32
 
 
33
How to test Boot from volume in Hyper-V from the OpenStack dashboard:
 
34
 
 
35
1. Fist of all create a volume
 
36
2. Get the volume ID of the created volume
 
37
3. Upload and untar to the Cloud controller the next VHD image:
 
38
http://dev.opennebula.org/attachments/download/482/ttylinux.vhd.gz
 
39
4. sudo dd if=/path/to/vhdfileofstep3 
 
40
of=/dev/nova-volumes/volume-XXXXX <- Related to the ID of step 2
 
41
5. Launch an instance from any image (this is not important because we are
 
42
just booting from a volume) from the dashboard, and don't forget to select
 
43
boot from volume and select the volume created in step2. Important: Device
 
44
name must be "vda".