how to manage opennebula sandbox on virtualbox using opennebula API

Multi tool use
Multi tool use

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
0
down vote

favorite












I want to manage different cloud resources using opennebula API.
For that i installed opennebula sandbox based Centos 7 on a virtualbox.
I
when i tried to execute my class in the eclipse IDE that allocate a simple virtual machine, i failed:
this is the code:



package org.opennebula;



import org.opennebula.client.Client;



import org.opennebula.client.OneResponse;



import org.opennebula.client.vm.VirtualMachine;



public class Alloue



public static void main(String args)
Client oneClient;



try



 String one_auth="oneadmin:opennebula";
String one_xmlrpc="http://localhost:2633/RPC2";

oneClient=new Client(one_auth,one_xmlrpc);

String vmTemplate =
"NAME = vm_from_java CPU = 0.1 MEMORY = 64n";


System.out.println("Virtual Machine Template:n" + vmTemplate);
System.out.println();

System.out.print("Trying to allocate the virtual machine... ");
OneResponse rc = VirtualMachine.allocate(oneClient, vmTemplate);

if( rc.isError() )

System.out.println( "failed!");
throw new Exception( rc.getErrorMessage() );


else

System.out.println("ok");



catch(Exception e)









How can i resolve this problem ?
How can i manage openenbula-sandbox on virtualbox with opennebula API ?










share|improve this question







New contributor




nour is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.























    up vote
    0
    down vote

    favorite












    I want to manage different cloud resources using opennebula API.
    For that i installed opennebula sandbox based Centos 7 on a virtualbox.
    I
    when i tried to execute my class in the eclipse IDE that allocate a simple virtual machine, i failed:
    this is the code:



    package org.opennebula;



    import org.opennebula.client.Client;



    import org.opennebula.client.OneResponse;



    import org.opennebula.client.vm.VirtualMachine;



    public class Alloue



    public static void main(String args)
    Client oneClient;



    try



     String one_auth="oneadmin:opennebula";
    String one_xmlrpc="http://localhost:2633/RPC2";

    oneClient=new Client(one_auth,one_xmlrpc);

    String vmTemplate =
    "NAME = vm_from_java CPU = 0.1 MEMORY = 64n";


    System.out.println("Virtual Machine Template:n" + vmTemplate);
    System.out.println();

    System.out.print("Trying to allocate the virtual machine... ");
    OneResponse rc = VirtualMachine.allocate(oneClient, vmTemplate);

    if( rc.isError() )

    System.out.println( "failed!");
    throw new Exception( rc.getErrorMessage() );


    else

    System.out.println("ok");



    catch(Exception e)









    How can i resolve this problem ?
    How can i manage openenbula-sandbox on virtualbox with opennebula API ?










    share|improve this question







    New contributor




    nour is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.





















      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I want to manage different cloud resources using opennebula API.
      For that i installed opennebula sandbox based Centos 7 on a virtualbox.
      I
      when i tried to execute my class in the eclipse IDE that allocate a simple virtual machine, i failed:
      this is the code:



      package org.opennebula;



      import org.opennebula.client.Client;



      import org.opennebula.client.OneResponse;



      import org.opennebula.client.vm.VirtualMachine;



      public class Alloue



      public static void main(String args)
      Client oneClient;



      try



       String one_auth="oneadmin:opennebula";
      String one_xmlrpc="http://localhost:2633/RPC2";

      oneClient=new Client(one_auth,one_xmlrpc);

      String vmTemplate =
      "NAME = vm_from_java CPU = 0.1 MEMORY = 64n";


      System.out.println("Virtual Machine Template:n" + vmTemplate);
      System.out.println();

      System.out.print("Trying to allocate the virtual machine... ");
      OneResponse rc = VirtualMachine.allocate(oneClient, vmTemplate);

      if( rc.isError() )

      System.out.println( "failed!");
      throw new Exception( rc.getErrorMessage() );


      else

      System.out.println("ok");



      catch(Exception e)









      How can i resolve this problem ?
      How can i manage openenbula-sandbox on virtualbox with opennebula API ?










      share|improve this question







      New contributor




      nour is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      I want to manage different cloud resources using opennebula API.
      For that i installed opennebula sandbox based Centos 7 on a virtualbox.
      I
      when i tried to execute my class in the eclipse IDE that allocate a simple virtual machine, i failed:
      this is the code:



      package org.opennebula;



      import org.opennebula.client.Client;



      import org.opennebula.client.OneResponse;



      import org.opennebula.client.vm.VirtualMachine;



      public class Alloue



      public static void main(String args)
      Client oneClient;



      try



       String one_auth="oneadmin:opennebula";
      String one_xmlrpc="http://localhost:2633/RPC2";

      oneClient=new Client(one_auth,one_xmlrpc);

      String vmTemplate =
      "NAME = vm_from_java CPU = 0.1 MEMORY = 64n";


      System.out.println("Virtual Machine Template:n" + vmTemplate);
      System.out.println();

      System.out.print("Trying to allocate the virtual machine... ");
      OneResponse rc = VirtualMachine.allocate(oneClient, vmTemplate);

      if( rc.isError() )

      System.out.println( "failed!");
      throw new Exception( rc.getErrorMessage() );


      else

      System.out.println("ok");



      catch(Exception e)









      How can i resolve this problem ?
      How can i manage openenbula-sandbox on virtualbox with opennebula API ?







      java eclipse sandbox ide api






      share|improve this question







      New contributor




      nour is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|improve this question







      New contributor




      nour is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|improve this question




      share|improve this question






      New contributor




      nour is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked 10 mins ago









      nour

      1




      1




      New contributor




      nour is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      nour is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      nour is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.

























          active

          oldest

          votes











          Your Answer







          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "106"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          convertImagesToLinks: false,
          noModals: false,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );






          nour is a new contributor. Be nice, and check out our Code of Conduct.









           

          draft saved


          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f475479%2fhow-to-manage-opennebula-sandbox-on-virtualbox-using-opennebula-api%23new-answer', 'question_page');

          );

          Post as a guest



































          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          nour is a new contributor. Be nice, and check out our Code of Conduct.









           

          draft saved


          draft discarded


















          nour is a new contributor. Be nice, and check out our Code of Conduct.












          nour is a new contributor. Be nice, and check out our Code of Conduct.











          nour is a new contributor. Be nice, and check out our Code of Conduct.













           


          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f475479%2fhow-to-manage-opennebula-sandbox-on-virtualbox-using-opennebula-api%23new-answer', 'question_page');

          );

          Post as a guest













































































          HSySNqQtm1FEwIlL0OPIy5oC04M56M,ntmz6GUNpnYNwyarVT
          UekWsu kQam3Drvw9WiCaoF6X7Q2bNq01,F

          Popular posts from this blog

          How to check contact read email or not when send email to Individual?

          How many registers does an x86_64 CPU actually have?

          Displaying single band from multi-band raster using QGIS