You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@cloudstack.apache.org by Damodar Reddy Talakanti <da...@citrix.com> on 2014/04/16 11:53:00 UTC

Re: Review Request 18964: Windowsfication of CloudStack Management Server - Changes to support windows OS

-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/18964/
-----------------------------------------------------------

(Updated April 16, 2014, 9:52 a.m.)


Review request for cloudstack, Abhinandan Prateek, Chiradeep Vittal, daan Hoogland, and Donal Lafferty.


Changes
-------

License headers were missing added the same.


Bugs: https://issues.apache.org/jira/browse/CLOUDSTACK-6105
    https://issues.apache.org/jira/browse/https://issues.apache.org/jira/browse/CLOUDSTACK-6105


Repository: cloudstack-git


Description
-------

Windowsfication of CloudStack Management Server


Diffs (updated)
-----

  Wix-cloudstack-maven-plugin/pom.xml e5b9bd1 
  Wix-cloudstack-maven-plugin/src/org/apache/cloudstack/wix/HeatMojo.java 4724d76 

Diff: https://reviews.apache.org/r/18964/diff/


Testing
-------

Tested in Linux environment after changes 
Also tested in Windows environment(For now tested on windows-8) to make sure it is getting installed and management service is running.

Able to add zones, able to register templates, able to launch a VM when it is running on windows.

Currently though it is getting added as a windows service, not able to start the service through windows service control manager which I am looking into currently. When run .exe file which is installed then server is getting up and able to access cloud stack UI. 

For now The following assumptions are made:
1. SSH keys are already installed
2. JAVA is already installed
3. tomcat is already installed

This patch contains the following new files related to WiX tool (To compile and run we need this tool)
1. acs.wxs
    The following command will be used to compile
      "<Path To WiX Tool>\bin\candle.exe" acs.wxs
2. client.wxs
    The following command will be used to generate the above file
      "<Path To WiX Tool>\bin\heat" dir client -gg -cg Test  -ke -sfrag -template fragment -out client.wxs  -var wix.SourceClient -dr WEBAPPS
    The following command will be used to compile the above generated file
      "<Path To WiX Tool>\bin\candle.exe" client.wxs
3. The following command will be used to generate .msi file
      "<Path To WiX Tool>\bin\light.exe" acs.wixobj client.wixobj -out acs.msi  -ext "C:\Program Files (x86)\WiX Toolset v3.8\bin\WixUIExtension.dll" -dSourceClient=SourceDir\client


Thanks,

Damodar Reddy Talakanti