vCloud Director 5.1 with vco 5.5 plugin configuration

I installed the plugin for vCloud director 5.1 in vCenter Orchestrator 5.5, the plug-in installed very well with the certificate that I imported from the url. However, configure the plug-in is another story, when I go to set up the plug-in of the customer or in the page web configuration, I get "failed to connect with the user name. My authorization of vco is configured with LDAP, so is my vCloud Director. In the client workflow 'Add link' vco for vCloud director, my selections are the url to vCloud, port 443, active, max 600 connections, the connection times out 20000 ms, session mode by user, the use and organization system SAML authentication Session. I followed the instructions of the Plugin VMware vCenter Orchestrator Documentation Centre . I tried to configure the plug-in as a shared user and I get the same error. I tried to configure the plugin in the web configuration page and it excludes the host that is the url to vCloud, but I do not see an inventory after that restart services vco and vco customer return logging. My vCloud infrastructure is set up with 2 cells and her sitting behind a vShield load balancing.  If I try to configure the plugin to go directly to one of my cells the workflow times out. I have a request of service opened with vmware, but I hope someone else has experienced this problem or might have a few suggestions that will point me in the right direction.

Thank you

J

Changing the IP of my vco did the trick. When I set up the server of vco, I put it on the same subnet as my vcd cells. While my load balancer was on a separate subnet. Assigning the vco server an ip address on a different subnet allowed transmitted traffic of the vco through the load balancer, solve my problem of time-out.

Tags: VMware

Similar Questions

  • Connection to vCloud Director 5.1 with the REST api plugin

    vco3.PNGI can't get this to work.

    I'm following part of the manual, I found here: http://blogs.vmware.com/orchestrator/2011/07/vcloud-director-twitter-yahoo-and-foursquarecom-http-rest-plug-in-use-case-examples.html

    So I install the plugin and run the workflow to add a host:

    vco1.PNG

    And set the authentication with the workflow "Set vCloud to authenticate a host REMAINS:

    vco2.PNG

    And run the supplied workflow "show a vCloud, Director of the Organization:

    vco3.PNG

    And get the error: "no valid API version can be selected.

    I also tried with version 1.0 and 1.5 of putting in the URL, but cannot make it work. What Miss me?

    Thank you.

    Hello

    It is a problem with you REST plugin does not support the vCloud 5.1 authentication correctly.

    I created the following work around to fill the gap until a new version of the plugin REST solves this problem.

    Please find here.

    Christophe.

  • Add firewall rules to a VAPP vCloud Director network via PowerCLI

    Hi, I am trying to add a VAPP network firewall rules in vCloud Director 5.1 with PowerCli 5.1.  This script seems to update, without error, but an update of firewall configuration reveals no change.

    Connect-CIServer-Server server.domain.local Org - org01-Director of the username-password xxxxxx - WarningAction SilentlyContinue

    $vAppNet = get-CIVAPP 111. Get-civappnetwork vApp_Network
    $vApp = get-CIVAPP 111

    $networkConfigSection = .extensiondata (get-CIVapp 111). GetNetworkConfigSection()

    $fwService = New-Object vmware.vimautomation.cloud.views.firewallservice
    $fwService.DefaultAction = "drop".
    $fwService.LogDefaultAction = $false
    $fwService.IsEnabled = $true
    $fwService.FirewallRule = New-Object vmware.vimautomation.cloud.views.firewallrule
    $fwService.FirewallRule += New-Object vmware.vimautomation.cloud.views.firewallrule
    $fwService.FirewallRule [0] .isenabled = $true
    $fwService.FirewallRule [0] .description = "TS of TSG"
    $fwService.FirewallRule [0] .protocols = New-Object vmware.vimautomation.cloud.views.firewallRuleTypeProtocols
    $fwService.FirewallRule [0].protocols.tcp = $true
    $fwService.FirewallRule [0] .policy = "enable".
    $fwService.FirewallRule [0] .port = "3389.
    $fwService.FirewallRule [0] .destinationIp = "Any"
    $fwService.FirewallRule [0] .sourceport = "3389.
    $fwService.FirewallRule [0] .sourceip = "192.168.1.81 - 192.168.1.89.
    $fwService.FirewallRule [0] = 'en '.

    $vAppNet.extensiondata.configuration.features += $fwService
    $networkConfigSection.UpdateServerData)

    -------------------------------------------------------------------------------------------

    When I run $vAppNet.extensiondata.configuration.features to check to see if it has been added, I see it below highlighted in red...

    PowerCLI C:\Program Files (x 86) \VMware\Infrastructure\vSphere PowerCLI for tenants > $vAppNet.extensiondata.configuration.features


    DefaultAction: drop

    LogDefaultAction: false
    FirewallRule:
    IsEnabled: true
    Get_anyattr:
    VCloudExtension:

    NatType: ipTranslation
    Policy: allowTrafficIn
    NatRule:
    ExternalIp:
    IsEnabled: true
    Get_anyattr:
    VCloudExtension:

    DefaultAction: drop
    LogDefaultAction: false
    FirewallRule: {}
    IsEnabled: true
    Get_anyattr:
    VCloudExtension:

    -------------------------------------------------------------------------------------------------------------

    Change the script a bit generates an error during the update...

    -------------------------------------------------------------------------------------------------------------

    Connect-CIServer-Server server.domain.local Org - org01-Director of the username-password xxxxxx - WarningAction SilentlyContinue

    $vAppNet = get-civappnetwork vApp_Network

    $vApp = get-CIVAPP 111
    $networkConfigSection = .extensiondata (get-CIVapp 111). GetNetworkConfigSection()
    $vAppNetwork = $networkConfigSection.NetworkConfig | where {$_.networkName - eq "vApp_Network"}

    $fwService = New-Object vmware.vimautomation.cloud.views.firewallservice
    $fwService.DefaultAction = "drop".
    $fwService.LogDefaultAction = $false
    $fwService.IsEnabled = $false
    $fwService.FirewallRule = New-Object vmware.vimautomation.cloud.views.firewallrule
    $fwService.FirewallRule += New-Object vmware.vimautomation.cloud.views.firewallrule
    $fwService.FirewallRule [0] .isenabled = $false
    $fwService.FirewallRule [0] .description = "TS of TSG"
    $fwService.FirewallRule [0] .protocols = New-Object vmware.vimautomation.cloud.views.firewallRuleTypeProtocols
    $fwService.FirewallRule [0].protocols.tcp = $true
    $fwService.FirewallRule [0] .policy = "enable".
    $fwService.FirewallRule [0] .port = "3389.
    $fwService.FirewallRule [0] .destinationIp = "Any"
    $fwService.FirewallRule [0] .sourceport = "3389.
    $fwService.FirewallRule [0] .sourceip = "192.168.1.81 - 192.168.1.89.
    $fwService.FirewallRule [0] = 'en '.

    $vAppNetwork.Configuration.Features = $vAppNetwork.Configuration.Features | where {!} (() $_-est [vmware.vimautomation.cloud.views.firewallservice])}
    $vAppNetwork.configuration.features += $fwService
    $networkConfigSection.UpdateServerData)

    ----------------------------

    Error

    ----------------------------

    Exception by calling 'UpdateServerData' with '0' or the arguments: "Bad request - Unexpected Exception of JAXB - HVAC-complex - type. 2.4.b: the content of the 'FirewallRule' element is not complete. An a ' {'http://www.}

    "VMware.com/vCloud/v1.5":VCloudExtension,"http://www.vmware.com/vcloud/v1.5": Id, ""http://www.vmware.com/vcloud/v1.5 ": IsEnabled, 'http://www.vmware.com/vcloud/v1.5 ': MatchOnTranslate,"http://www.vmware.com "

    "/vCloud/v1.5": description, ""http://www.vmware.com/vcloud/v1.5 ": policy,"http://www.vmware.com/vcloud/v1.5 ": protocols, 'http://www.vmware.com/vcloud/v1.5 ': IcmpSubType," "http://www.vmware.com/vcloud/v1.5": P "

    "ORT," 'http://www.vmware.com/vcloud/v1.5 ': DestinationPortRange, "http://www.vmware.com/vcloud/v1.5": DestinationIp, ""http://www.vmware.com/vcloud/v1.5 "{: DestinationVm}" ' is expected. ""

    On line: 1 char: 39

    + $networkConfigSection.UpdateServerData < < < <)

    + CategoryInfo: NotSpecified: (:)) [], MethodInvocationException)

    + FullyQualifiedErrorId: DotNetMethodException

    I was not able to understand how to successfully upgrade.  Please, any help would be greatly apprecieated.

    Hi, I found my answer, here is the final solution.

    $vAppNet = get-CIVAPP 111. Get-CIVAppNetwork vApp_Network
    $vApp = get-CIVAPP 111
    $networkConfigSection = .extensiondata (get-CIVapp 111). GetNetworkConfigSection()
    $vAppNetwork = $networkConfigSection.NetworkConfig | where {$_.networkName - eq "vApp_Network"}

    $fwService = New-Object vmware.vimautomation.cloud.views.firewallservice
    $fwService.DefaultAction = "drop".
    $fwService.LogDefaultAction = $false
    $fwService.IsEnabled = $true
    $fwService.FirewallRule = New-Object vmware.vimautomation.cloud.views.firewallrule
    $fwService.FirewallRule += New-Object vmware.vimautomation.cloud.views.firewallrule

    Rule #First
    $fwService.FirewallRule [0] .isenabled = $true
    $fwService.FirewallRule [0] .description = "allow all outgoing traffic.
    $fwService.FirewallRule [0] .protocols = New-Object vmware.vimautomation.cloud.views.firewallRuleTypeProtocols
    $fwService.FirewallRule [0] .protocols. ALL = $true
    $fwService.FirewallRule [0] .policy = "enable".
    $fwService.FirewallRule [0] .destinationIp = "external".
    $fwService.FirewallRule [0] .sourceip = "internal".

    Rule #Second
    $fwService.FirewallRule [1] .isenabled = $true
    $fwService.FirewallRule [1] .description = "TS of TSG"
    $fwService.FirewallRule [1] .protocols = New-Object vmware.vimautomation.cloud.views.firewallRuleTypeProtocols
    $fwService.FirewallRule [1].protocols.tcp = $true
    $fwService.FirewallRule [1] .policy = "enable".
    $fwService.FirewallRule [1] .port = "3389.
    $fwService.FirewallRule [1] .destinationIp = 'Any '.
    $fwService.FirewallRule [1] .sourceport = "3389.
    $fwService.FirewallRule [1] .sourceip = ' 192.168.1.81 - 192.168.1.89.

    $vAppNetwork.Configuration.Features = $vAppNetwork.Configuration.Features | where {!} (() $_-est [vmware.vimautomation.cloud.views.firewallservice])}
    $vAppNetwork.configuration.features += $fwService
    $networkConfigSection.UpdateServerData)

  • vCloud 5.1 Plugin with vCO 5.5 + vCloud Director 5.5: Probable incompatibility?

    Hello

    I found that when you use the following combination vCenter Orchestrator is impossible to enumerate objects vCloud Director below the level of vDC of organization:

    • vCloud 5.5
    • vCO 5.5
    • vCloud Director Plugin for vCO 5.1
    • Logging on to the Organization of the system.

    The following error is reported in the newspapers - I pointed out the relevant sections. What seems to happen is that the following method: com.vmware.vmo.plugin.vcloud.VCloudEntityResolver.getEntityByReference is called, but fails with this exception: com.thoughtworks.xstream.converters.reflection.ObjectAccessException: javax.xml.bind.JAXBElement.name invalid final field. Is there a workaround currently available or a release of out-of-band of the vCloud Director plugin compatible with 5.5?

    Any help beyond "this is an unsupported configuration", and "a compatible plugin will be released later this year" would be appreciated, because we depend on vCO to supply our daily operations.

    Here is the stack complete error in the case of the developers look on this post:

    2013 10-15 10:56:23.021 - 0400 [http-bio-ip-8281-exec-16] ERROR {} [VCloudPluginFactory]

    com.vmware.vmo.plugin.vcloud.VCloudPluginException

    at com.vmware.vmo.plugin.vcloud.VCloudEntityResolver.getEntityByReference(VCloudEntityResolver.java:107)

    at com.vmware.vmo.plugin.vcloud.VCloudPluginFactory.hasChildrenInRelation(VCloudPluginFactory.java:206)

    at sun.reflect.GeneratedMethodAccessor136.invoke (unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke (unknown Source)

    at java.lang.reflect.Method.invoke (unknown Source)

    at ch.dunes.vso.sdk.DirectInvoker.invoke(DirectInvoker.java:55)

    at ch.dunes.vso.sdk.SDKDatasourceInvoker.hasChildrenInRelation(SDKDatasourceInvoker.java:136)

    at ch.dunes.vso.sdk.SDKFinder._hasChildrenInRelation(SDKFinder.java:266)

    at ch.dunes.vso.sdk.SDKFinder.hasChildrenInRelation(SDKFinder.java:241)

    at ch.dunes.vso.sdk.ModulesFactory.hasChildrenInRelation(ModulesFactory.java:534)

    at com.vmware.o11n.sdk.EnhancedScriptingSDK.hasChildrenInRelation(EnhancedScriptingSDK.java:104)

    at com.vmware.o11n.service.sdk.SdkModuleServiceImpl.hasChildrenInRelation(SdkModuleServiceImpl.java:66)

    at com.vmware.o11n.service.factory.VcoFactoryFacade.hasChildrenInRelation(VcoFactoryFacade.java:1613)

    at sun.reflect.GeneratedMethodAccessor141.invoke (unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke (unknown Source)

    at java.lang.reflect.Method.invoke (unknown Source)

    at com.vmware.o11n.service.security.AccessRightsInterceptor.invoke(AccessRightsInterceptor.java:92)

    at com.vmware.o11n.service.security.AccessRightsInterceptor.invoke(AccessRightsInterceptor.java:83)

    at com.vmware.o11n.service.webremoting.VcoDelegatingWebFacade.invokeOperation(VcoDelegatingWebFacade.java:106)

    at com.vmware.o11n.integration.initialization.VcoFactoryServiceFacadeProxy.invokeOperation(VcoFactoryServiceFacadeProxy.java:86)

    at sun.reflect.GeneratedMethodAccessor119.invoke (unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke (unknown Source)

    at java.lang.reflect.Method.invoke (unknown Source)

    at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:319)

    at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:196)

    to com.sun.proxy. $Proxy104.invokeOperation (unknown Source)

    at sun.reflect.GeneratedMethodAccessor118.invoke (unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke (unknown Source)

    at java.lang.reflect.Method.invoke (unknown Source)

    at org.springframework.remoting.support.RemoteInvocation.invoke(RemoteInvocation.java:205)

    at org.springframework.remoting.support.DefaultRemoteInvocationExecutor.invoke(DefaultRemoteInvocationExecutor.java:38)

    at org.springframework.remoting.support.RemoteInvocationBasedExporter.invoke(RemoteInvocationBasedExporter.java:78)

    at org.springframework.remoting.support.RemoteInvocationBasedExporter.invokeAndCreateResult(RemoteInvocationBasedExporter.java:114)

    at org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter.handleRequest(HttpInvokerServiceExporter.java:73)

    at org.springframework.web.context.support.HttpRequestHandlerServlet.service(HttpRequestHandlerServlet.java:67)

    at javax.servlet.http.HttpServlet.service(HttpServlet.java:722)

    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:305)

    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)

    at net.sf.ehcache.constructs.web.filter.GzipFilter.doFilter(GzipFilter.java:95)

    at net.sf.ehcache.constructs.web.filter.Filter.doFilter(Filter.java:86)

    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243)

    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)

    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:222)

    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:123)

    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:581)

    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:168)

    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:99)

    at org.apache.catalina.valves.RemoteIpValve.invoke(RemoteIpValve.java:680)

    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:929)

    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:118)

    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:407)

    at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1002)

    to org.apache.coyote.AbstractProtocol$ AbstractConnectionHandler.process (AbstractProtocol.java:585)

    to org.apache.tomcat.util.net.JIoEndpoint$ SocketProcessor.run (JIoEndpoint.java:312)

    at java.util.concurrent.ThreadPoolExecutor.runWorker (unknown Source)

    to java.util.concurrent.ThreadPoolExecutor$ Worker.run (unknown Source)

    at java.lang.Thread.run (unknown Source)

    Caused by: java.lang.reflect.InvocationTargetException

    at sun.reflect.GeneratedMethodAccessor150.invoke (unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke (unknown Source)

    at java.lang.reflect.Method.invoke (unknown Source)

    at com.vmware.vmo.plugin.vcloud.VCloudEntityResolver.getEntityByReference(VCloudEntityResolver.java:105)

    ... more than 56

    Caused by: com.thoughtworks.xstream.converters.reflection.ObjectAccessException: javax.xml.bind.JAXBElement.name invalid final field

    at com.thoughtworks.xstream.converters.reflection.PureJavaReflectionProvider.validateFieldAccess(PureJavaReflectionProvider.java:149)

    at com.thoughtworks.xstream.converters.reflection.PureJavaReflectionProvider.visitSerializableFields(PureJavaReflectionProvider.java:105)

    at com.thoughtworks.xstream.converters.reflection.ReflectionConverter.marshal(ReflectionConverter.java:44)

    at com.thoughtworks.xstream.core.ReferenceByXPathMarshaller.convertAnother(ReferenceByXPathMarshaller.java:36)

    at com.thoughtworks.xstream.converters.collections.AbstractCollectionConverter.writeItem(AbstractCollectionConverter.java:68)

    at com.thoughtworks.xstream.converters.collections.CollectionConverter.marshal(CollectionConverter.java:47)

    at com.thoughtworks.xstream.core.ReferenceByXPathMarshaller.convertAnother(ReferenceByXPathMarshaller.java:36)

    to com.thoughtworks.xstream.converters.reflection.ReflectionConverter$ 1.writeField(ReflectionConverter.java:81)

    to com.thoughtworks.xstream.converters.reflection.ReflectionConverter$ 1.visit(ReflectionConverter.java:59)

    at com.thoughtworks.xstream.converters.reflection.PureJavaReflectionProvider.visitSerializableFields(PureJavaReflectionProvider.java:108)

    at com.thoughtworks.xstream.converters.reflection.ReflectionConverter.marshal(ReflectionConverter.java:44)

    at com.thoughtworks.xstream.core.ReferenceByXPathMarshaller.convertAnother(ReferenceByXPathMarshaller.java:36)

    at com.thoughtworks.xstream.converters.collections.AbstractCollectionConverter.writeItem(AbstractCollectionConverter.java:68)

    at com.thoughtworks.xstream.converters.collections.CollectionConverter.marshal(CollectionConverter.java:47)

    at com.thoughtworks.xstream.core.ReferenceByXPathMarshaller.convertAnother(ReferenceByXPathMarshaller.java:36)

    to com.thoughtworks.xstream.converters.reflection.ReflectionConverter$ 1.writeField(ReflectionConverter.java:81)

    to com.thoughtworks.xstream.converters.reflection.ReflectionConverter$ 1.visit(ReflectionConverter.java:59)

    at com.thoughtworks.xstream.converters.reflection.PureJavaReflectionProvider.visitSerializableFields(PureJavaReflectionProvider.java:108)

    at com.thoughtworks.xstream.converters.reflection.ReflectionConverter.marshal(ReflectionConverter.java:44)

    at com.thoughtworks.xstream.core.ReferenceByXPathMarshaller.convertAnother(ReferenceByXPathMarshaller.java:36)

    at com.thoughtworks.xstream.core.TreeMarshaller.start(TreeMarshaller.java:46)

    at com.thoughtworks.xstream.core.ReferenceByXPathMarshallingStrategy.marshal(ReferenceByXPathMarshallingStrategy.java:17)

    at com.thoughtworks.xstream.XStream.marshal(XStream.java:476)

    at com.thoughtworks.xstream.XStream.marshal(XStream.java:466)

    at com.thoughtworks.xstream.XStream.toXML(XStream.java:438)

    at net.sf.beanlib.utils.xml.XmlUtils.toXml(XmlUtils.java:28)

    at net.sf.beanlib.utils.ObjectUtils.deepCopy(ObjectUtils.java:32)

    at com.vmware.vmo.plugin.vcloud.model.ModelHelper.cloneObject(ModelHelper.java:453)

    at com.vmware.vmo.plugin.vcloud.model.Vdc.getInstance(Vdc.java:88)

    ... more than 60

    XStream library must be updated to version 1.4.4 + to make it work with Java 7.

    Try the following (no guarantee that this will work, however)

    1. Stop the server vCO
    2. Locate the plugin files in your deployment of vCO directory (/ app-server/plugins/o11nplugin-vcloud.dar) and save it in a location sure.
    3. Open it with a program that can read zip files (like WinZip, WinRAR, etc.) and go to "lib" folder
    4. There should be a file named 'xstream - 1.x.y.jar'. Most likely, you will see "xstream - 1.3.1.jar' (version 1.3.1)"
    5. You need to replace by ' xstream - 1.4.4.jar' and maybe add a library more - ' xmlpull - 1.1.3.1.jar'. If you can't find these libraries on the Web, I can send them to you by e-mail.
    6. Remove directories temporary tomcat in the vCO directory (/ app-server/work /, / app-server/temp /)
    7. Start the server vCO

    I don't have a working vCloud environment to test, so it cannot work without having to recompile the plugin, but it won't hurt to try.

  • VMware vCloud Director with the NSX Manager installation process.

    Hello world

    I recently planned to deploy VMware vCloud Director (so NSX Manager will be deployed, as part of the process) on an existing environment (existing virtual machines running, virtual switches,...).

    Customers use their virtual machines because they are in production.

    I was wondering if the deployment / installation of NSX Manager would cause no downtime or disturb the workflows running or even break the VM interconnections?

    Thanks in advance,

    Lawrence B.

    I looked at many tutorials, and indeed nothing should happen so that deploy a controller or something else. My concerns were about this "else", as the virtual switches and so on. I guess that the NSX will show existing resources such as the existing virtual switches (and so forth) already configured with vCenter?

    What vCloud Director does is interact with NSX via API.  Calls are exclusive to VXLAN (vdnscope-# resources in the API) and demand to deploy or update an edge.  vCD is not 'show' resources discovered by NSX.  You configure NSX and vCD makes an API call and said ' I want a Board connected to the port groups A and B "or"I want a new vWire of this VXLAN instance.

    Is there a document with the "best practices" for the deployment of vCD?

    Yes: VMware vCloud Architecture Toolkit: Cloud Computing reference Architecture | United States

    The meddle with existing resources, must have dedicated resources for the vCD vendor (aka the cluster in vCenter).  It is better to have that then using a pool of resources to a cluster where neighbour noisy problems can arise.  vCAT above might exceed a lot of that when you read it.

  • Will vcloud Director 5.5 compatible with vsphere 5.1U1?

    Hey,.

    We vSphere 5.1U1 running in production and we look at vCloud Director 5.5 for the deployment. But VMware does not have a virtual Director 5.1 appliance and we do not want to buy a server, Redhat enterprise server (we could upgrade vSphere 5.1u1 soon, but due the Veem, we cannot now). Since VMware provides the virtual appliance for vCloud Director 5.5, so I got this question that I can't answer in VMware documents:

    Will vCloud Director 5.5 compatible with vSphere 5.1U1?

    Thank you

    / S

    Yes vCloud Director 5.5 is compatible with vSphere 5.1U1.

    Check it out here. VMware product interoperability matrices

    Please consider awarding points when choosing the correct answer.

  • How to create the Clone VM using VCO plugin to vCloud Director?

    Hello

    Vcloud Director I can do a right-click option to copy of VM use for cloning. However, vCenter Orchestrator 5.1, I don't see the copy method in the VclVM object.

    How to write a stream VCO to clone a virtual machine that is customized?

    Kind regards

    Danie

    In vCD you need to recompose a vApp to clone a virtual machine in a paralytic.

    Here's some code I created for the vCD 1.5

    var recomposeVAppParams = new VclRecomposeVAppParams();
    var vmItem = new VclSourcedCompositionItemParam();
    if (vmName != null) vm.name = vmName;
    vmItem.source = vm.getReference();
    vmItem.sourceDelete = false;
    vmItem.instantiationParams = new VclInstantiationParams();
    
    //var numNetConnections = vm.getNetworkConnectionSection().networkConnection.size();
    
    var networkConnectionSection = vm.getNetworkConnectionSection();
    vmItem.instantiationParams.section.add(networkConnectionSection);
    
    recomposeVAppParams.sourcedItem.add(vmItem);
    return vApp.recompose(recomposeVAppParams);
    

    If you want to just clone the VAPP then it is a workflow of clone in the library of vCloud.

  • Unable to integrate with vCloud Director - data collection of computing resources is not

    Hello

    We are trying to integrate vCloud Director vCAC in vain.

    In short.

    vCD

    -VC organization - booking pool

    When you perform data collection in the calculation of the resources, it failed with the error.

    "Workflow"vCloudInventory"failed with the following exception: object reference not set to an instance of an object."

    Stack trace

    "at DynamicOps.VCloudModel.Interface.VCloudManagementServices.GetOrgVdcNetworks (String vdcId) at DynamicOps.VCloudModel.Activities.VCloudGetOrgVdcNetworks.Execute (CodeActivityContext context) at System.Activities.CodeActivity.InternalExecute (ActivityInstance, executor, BookmarkManager bookmarkManager ActivityExecutor instance) to System.Activities.Runtime.ActivityExecutor.ExecuteActivityWorkItem.ExecuteBody (ActivityExecutor executor, BookmarkManager bookmarkManager, location resultLocation).

    Help, please.

    Thank you very much

    Your OrgVDC have a stray or not network?  There is a known issue that there must be at least a valid network on the OrgVDC you want to manage.  This could break the data collection for other organizations, so if there is a 'test' organization, it would be better to go to the resources page of calculation under the company administrator and delete all these management resources.

    This issue has been registered and should be fixed in the next version.

  • Invalid accept header with PHP SDK 5.1 against 1.5.1 vCloud Director

    In PHP 5.1 SDK samples do not work against 1.5.1 vCloud Director?  Any code that I am trying to write with PHP 5.1 SDK really will work against my vCD 1.5.1?  Or it will fail as the samples?  Is there something I can do for samples and all this work?

    My question seems very similar to http://communities.vmware.com/message/2142668#2142668.  I've had some success with the SDK 1.5 samples against my 1.5.1 vCloud Director.  But when I've upgraded to the PHP 5.1 SDK, all I could get was "invalid accepts header" messages, like this:

    PHP Fatal error: Eception exception 'VMware_VCloud_SDK_Exception' with the message "POST ". https://vCloud.mydomain.edu/API/login failed, return code: 400, error: <? xml version = "1.0" encoding = "UTF-8"? >

    " < error xmlns =" http://www.VMware.com/vCloud/v1.5 "stackTrace =" com.vmware.vcloud.api.rest.handlers.exceptions.BadRequestRestApiException: invalid application accepts the header

    at com.vmware.vcloud.api.rest.common.handlers.ErrorHandler.getBadRequestApiException(ErrorHandler.java:71)

    at com.vmware.vcloud.api.rest.common.handlers.ErrorHandler.errorBadRequest(ErrorHandler.java:44)

    at sun.reflect.GeneratedMethodAccessor11639.invoke (unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)

    at org.apache.cxf.service.invoker.AbstractInvoker.performInvocation(AbstractInvoker.java:173)

    at org.apache.cxf.service.invoker.AbstractInvoker.invoke(AbstractInvoker.java:89)

    at org.apache.cxf.jaxrs.JAXRSInvoker.invoke(JAXRSInvoker.java:133)

    to org.ap in /home/bob/lib/vcloudPHP-5.1.0/library/VMware/VCloud/ServiceAbstract.php on line 178

    After changing VCLOUD_API_VERSION in library/VMware/VCloud/Constants.php of 5.1 to 1.5, I get this:

    PHP Fatal error: Eception exception 'VMware_VCloud_SDK_Exception' with the message "POST ". https://vCloud.mydomain.edu/API/login failed, return code: 401 error,:, request data:
    ' in /home/bob/lib/vcloudPHP-5.1.0/library/VMware/VCloud/ServiceAbstract.php:178
    Stack trace:
    #0 home/bob/lib/vcloudPHP-5.1.0/library/VMware/VCloud/Service.php(114): VMware_VCloud_SDK_Service_Abstract-> message ('https://vcloud...) "(, 200) "
    #1 home/bob/lib/vcloudPHP-5.1.0/samples/login.php(78): VMware_VCloud_SDK_Service-> login ('vcloud.mydomain...', Array, Array)
    #2 {hand}
    lifting in /home/bob/lib/vcloudPHP-5.1.0/library/VMware/VCloud/ServiceAbstract.php on line 178

    A standard API call seems to work:

    curl - test id = true u scripty@system h ' Accept: application / * + xml; " version 1.5 =" https://vCloud.mydomain.edu/API/sessions

    Enter password for the user "scripty@system": Home


    HTTP/1.1 200 OK

    Date: Wednesday, November 28, 2012 17:43:56 GMT

    x vcloud-authorization: rxpTQIswdd15HNz + hZku6BCutGljF5VLUrt0M8x + IGI =

    Set-Cookie: vcloud-token = rxpTQIswdd15HNz + hZku6BCutGljF5VLUrt0M8x IGI plus; Guarantee; Path = /.

    Content-Type: application/vnd.vmware.vcloud.session+xml;version=1.5

    Date: Wednesday, November 28, 2012 17:43:56 GMT

    Content-Length: 1009


    <? XML version = "1.0" encoding = "UTF-8"? >

    " < session xmlns =" http://www.VMware.com/vCloud/v1.5 "user = org"scripty' = 'System' type="application/vnd.vmware.vcloud.session+xml' href =" https://vCloud.mydomain.edu/API/session/ "" xmlns: xsi = " http://www.w3.org/2001/XMLSchema-instance " xsi: schemaLocation = " http://www.VMware.com/vCloud/v1.5 http://vcloud.the.usg.edu/api/v1.5/schema/master.xsd" > "" "

    "" < link rel = "low" type="application/vnd.vmware.vcloud.orgList+xml" href = " https://vCloud.mydomain.edu/API/org/ "/>

    "" < link rel = "low" type="application/vnd.vmware.admin.vcloud+xml" href = " https://vCloud.mydomain.edu/API/Admin/ "/>

    "" < link rel = "low" type="application/vnd.vmware.admin.vmwExtension+xml" href = " https://vCloud.mydomain.edu/API/admin/extension "/>

    "" < link rel = "low" type="application/vnd.vmware.vcloud.query.queryList+xml" href = " https://vCloud.mydomain.edu/API/query "/>

    "" < link rel = "entityResolver" type="application/vnd.vmware.vcloud.entity+xml" href = " https://vCloud.mydomain.edu/API/entity/ "/>

    < / session >

    Version switching in gross 1.5 to 5.1 API call causes the accept header message invalid, which is not surprising, now that I became familiar with the format and the requirement to accept header.
    For example, can code samples from the SDK 5.1 actually work against 1.5.1 API?
    Thank you!!!

    Hello

    PHP Fatal error: Eception exception 'VMware_VCloud_SDK_Exception' with message "POST https://vcloud.mydomain.edu/api/login failed, return code: 401 error,:, request data:"

    [Rajesh] Seems to me like a problem of password username. As it clearly says 401.

    After changing VCLOUD_API_VERSION in library/VMware/VCloud/Constants.php of 5.1 to 1.5, I get this:

    [Rajesh] SDK users should not change the code in the library. This is a bug with the SDK for not allowing users to change the version of API through the library (connection method accepts the version as well) rather than change in the library.
    Kind regards
    Rajesh Kamal.
  • Could not access vCloud Director with IE

    Hi, I installed vCloud Director 1.5 on my CentOS 6.3 in my lab. I used a Microsoft SQL database. During installation, I tried to set all the parts correctly. Everything was fine and I can launch my Internet Explorer browser and connect to the vCloud Director. I set it up without any problems. I run my lab on vmware wrokstation 8. I closed the CentOS down and all my virtual machines. The next day when I started my VMs and tried to connect to vCloud Director whit IE browser I could not. According to KB: 2005819 my IE is 32 bit, I have JRE and Adobe Flash Player.

    mbayat wrote:

    Hello

    I have attached the file vmware-vcd-support to this post and log files

    Please provide the logs.

    There is an error in the file which indicates what could be the problem. I will quote the message at the end of this post in case anyone is looking for a solution to a similar problem in the future.

    This error indicates that the encryption information in the configuration file of this cell does not match the information that was used to configure (and encrypt the information contained in) your database. For example, when the cell tries to decrypt the information contained in the database, the encryption algorithm fails (which is where the strange sounding "javax.crypto.BadPaddingException: receipt final block not well padded ' error message comes of).

    It is most frequently observed in an environment of several cell when you do not use the response.properties file when you run/opt/vmware/vcloud-director/bin/configure on additional cells. The correct procedure to follow for vCD 1.5 is documented in the 'Installation software vCloud Director on other servers' section on page 31 of the installation and Configuration Guide.

    However, in your case, I suspect the problem that we see here is actually the result of your attempts to debug what was your original problem. When you have installed vCD for the first time, you have run/opt/vmware/vcloud-director/bin/configure (or said 'yes' to a prompt end installation that is in order) which produces an encryption key used to encrypt the different pieces of information in your database. After meeting the initial error, looks like you uninstalled vCD system and re-installed. If you don't have keep the encryption key or empty the database when you do, the second run/opt/vmware/vcloud-director/bin/configure would have generated a different encryption key, which does not allow to read the information stored in the database by the first system.

    At this point, you have two options. If you have the contents of the directory/opt/vmware/vcloud-director/etc of the first installation, you can use those to recover the encryption key and configure the current installation to use this value. If you do not, you can completely clear the database (for example by delete and recreate) and re - run/opt/vmware/vcloud-director/bin/configure which will create a fresh database schema, encryption of sensitive data (new) with the current encryption key. When you do that, you would be able to start the cell (but you can still run in what was your original question).

    Once you are able to start your cell, a person must be able to help debug your problem with IE (assuming that it has not been resolved by the relocation process).

    --

    The message of the complete log which can be used to identify the problem:

    2012-08-30 20:06:58,158 | ERROR    | SpringOsgiExtenderThread-8 | ContextLoaderListener          | Application context refresh failed (OsgiBundleXmlApplicationContext(bundle=com.vmware.vcloud.common-util, config=osgibundle:/META-INF/spring/*.xml)) | org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'hibernateCacheRegions': Cannot create inner bean 'abstractReplicatedCache$child#7f32e233' of type [com.vmware.vcloud.common.ehcache.ReplicatedEhCacheFactoryBean] while setting bean property 'sourceList' with key [0]; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'abstractReplicatedCache$child#7f32e233' defined in URL [bundleentry://169.fwk722090788/META-INF/spring/common-persist-context-cache.xml]: Cannot resolve reference to bean 'cacheManager' while setting bean property 'cacheManager'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'cacheManager' defined in URL [bundleentry://169.fwk722090788/META-INF/spring/common-persist-context.xml]: Invocation of init method failed; nested exception is net.sf.ehcache.CacheException: Problem creating connections: Error decrypting data.    at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveInnerBean(BeanDefinitionValueResolver.java:281)    at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveValueIfNecessary(BeanDefinitionValueResolver.java:120)    at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveManagedList(BeanDefinitionValueResolver.java:353)    at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveValueIfNecessary(BeanDefinitionValueResolver.java:153)    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyPropertyValues(AbstractAutowireCapableBeanFactory.java:1325)    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1086)    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:517)    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:456)    at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:291)    at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:288)    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:190)    at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:563)    at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:895)    at org.springframework.osgi.context.support.AbstractDelegatedExecutionApplicationContext.access$1600(AbstractDelegatedExecutionApplicationContext.java:69)    at org.springframework.osgi.context.support.AbstractDelegatedExecutionApplicationContext$4.run(AbstractDelegatedExecutionApplicationContext.java:355)    at org.springframework.osgi.util.internal.PrivilegedUtils.executeWithCustomTCCL(PrivilegedUtils.java:85)    at org.springframework.osgi.context.support.AbstractDelegatedExecutionApplicationContext.completeRefresh(AbstractDelegatedExecutionApplicationContext.java:320)    at org.springframework.osgi.extender.internal.dependencies.startup.DependencyWaiterApplicationContextExecutor$CompleteRefreshTask.run(DependencyWaiterApplicationContextExecutor.java:132)    at java.lang.Thread.run(Thread.java:662)Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'abstractReplicatedCache$child#7f32e233' defined in URL [bundleentry://169.fwk722090788/META-INF/spring/common-persist-context-cache.xml]: Cannot resolve reference to bean 'cacheManager' while setting bean property 'cacheManager'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'cacheManager' defined in URL [bundleentry://169.fwk722090788/META-INF/spring/common-persist-context.xml]: Invocation of init method failed; nested exception is net.sf.ehcache.CacheException: Problem creating connections: Error decrypting data.    at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveReference(BeanDefinitionValueResolver.java:328)    at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveValueIfNecessary(BeanDefinitionValueResolver.java:106)    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyPropertyValues(AbstractAutowireCapableBeanFactory.java:1325)    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1086)    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:517)    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:456)    at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveInnerBean(BeanDefinitionValueResolver.java:270)    ... 19 moreCaused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'cacheManager' defined in URL [bundleentry://169.fwk722090788/META-INF/spring/common-persist-context.xml]: Invocation of init method failed; nested exception is net.sf.ehcache.CacheException: Problem creating connections: Error decrypting data.    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1420)    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:519)    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:456)    at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:291)    at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:288)    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:190)    at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveReference(BeanDefinitionValueResolver.java:322)    ... 25 moreCaused by: net.sf.ehcache.CacheException: Problem creating connections: Error decrypting data.    at com.vmware.vcloud.common.ehcache.ActiveMqCacheManagerPeerProviderFactory.createCachePeerProvider(ActiveMqCacheManagerPeerProviderFactory.java:77)    at net.sf.ehcache.config.ConfigurationHelper.createCachePeerProviders(ConfigurationHelper.java:282)    at net.sf.ehcache.CacheManager.configure(CacheManager.java:319)    at net.sf.ehcache.CacheManager.init(CacheManager.java:237)    at net.sf.ehcache.CacheManager.(CacheManager.java:210)    at net.sf.ehcache.CacheManager.create(CacheManager.java:517)    at org.springframework.cache.ehcache.EhCacheManagerFactoryBean.afterPropertiesSet(EhCacheManagerFactoryBean.java:103)    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1477)    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1417)    ... 32 moreCaused by: javax.jms.JMSException: Error decrypting data.    at org.apache.activemq.util.JMSExceptionSupport.create(JMSExceptionSupport.java:49)    at org.apache.activemq.ActiveMQConnection.syncSendPacket(ActiveMQConnection.java:1255)    at org.apache.activemq.ActiveMQConnection.ensureConnectionInfoSent(ActiveMQConnection.java:1350)    at org.apache.activemq.ActiveMQConnection.createSession(ActiveMQConnection.java:300)    at org.apache.activemq.pool.SessionPool.createSession(SessionPool.java:108)    at org.apache.activemq.pool.SessionPool.makeObject(SessionPool.java:76)    at org.apache.commons.pool.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:974)    at org.apache.activemq.pool.SessionPool.borrowSession(SessionPool.java:54)    at org.apache.activemq.pool.ConnectionPool.createSession(ConnectionPool.java:108)    at org.apache.activemq.pool.XaConnectionPool.createSession(XaConnectionPool.java:52)    at org.apache.activemq.pool.PooledConnection.createSession(PooledConnection.java:141)    at org.apache.activemq.pool.PooledConnection.createTopicSession(PooledConnection.java:137)    at com.vmware.vcloud.common.ehcache.ActiveMqCacheManagerPeerProviderFactory.createCachePeerProvider(ActiveMqCacheManagerPeerProviderFactory.java:69)    ... 40 moreCaused by: com.vmware.ssdc.util.crypto.CryptoException: Error decrypting data.    at com.vmware.ssdc.util.AesEncryption.Decrypt(AesEncryption.java:137)    at com.vmware.ssdc.util.AesEncryption.Decrypt(AesEncryption.java:150)    at com.vmware.vcloud.jms.activemq.impl.SystemUserCellBrokerAuthenticator.getBrokerSystemUserPassword(SystemUserCellBrokerAuthenticator.java:57)    at com.vmware.vcloud.jms.activemq.impl.SystemUserCellBrokerAuthenticator.doAuthentication(SystemUserCellBrokerAuthenticator.java:75)    at com.vmware.vcloud.jms.activemq.impl.CellAuthenticatedBrokerFactory.doAddConnection(CellAuthenticatedBrokerFactory.java:183)    at com.vmware.vcloud.jms.activemq.impl.CellAuthenticatedBrokerFactory.access$100(CellAuthenticatedBrokerFactory.java:44)    at com.vmware.vcloud.jms.activemq.impl.CellAuthenticatedBrokerFactory$1.addConnection(CellAuthenticatedBrokerFactory.java:102)    at org.apache.activemq.broker.MutableBrokerFilter.addConnection(MutableBrokerFilter.java:89)    at org.apache.activemq.broker.TransportConnection.processAddConnection(TransportConnection.java:686)    at org.apache.activemq.command.ConnectionInfo.visit(ConnectionInfo.java:134)    at org.apache.activemq.broker.TransportConnection.service(TransportConnection.java:308)    at org.apache.activemq.broker.TransportConnection$1.onCommand(TransportConnection.java:182)    at org.apache.activemq.transport.ResponseCorrelator.onCommand(ResponseCorrelator.java:109)    at org.apache.activemq.transport.TransportFilter.onCommand(TransportFilter.java:68)    at org.apache.activemq.transport.vm.VMTransport.iterate(VMTransport.java:204)    at org.apache.activemq.thread.PooledTaskRunner.runTask(PooledTaskRunner.java:122)    at org.apache.activemq.thread.PooledTaskRunner$1.run(PooledTaskRunner.java:43)    at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)    ... 1 moreCaused by: javax.crypto.BadPaddingException: Given final block not properly padded    at com.sun.crypto.provider.SunJCE_f.b(DashoA13*..)    at com.sun.crypto.provider.SunJCE_f.b(DashoA13*..)    at com.sun.crypto.provider.AESCipher.engineDoFinal(DashoA13*..)    at javax.crypto.Cipher.doFinal(DashoA13*..)    at com.vmware.ssdc.util.AesEncryption.v2Decrypt(AesEncryption.java:172)    at com.vmware.ssdc.util.AesEncryption.Decrypt(AesEncryption.java:131)    ... 19 more
    
  • What is the smallest model of VAPP available that can be used with vCloud Director?

    Hi all

    I was on the hunt to find the smallest operating system which can be used for demonstration purposes.

    I want to be able to quickly create vApps so a small footprint would be ideal.

    What guys do you use?

    I found this customization for operating system support invited into vCloud Director 5.5 (2058524) | VMware KB

    I always look for a 'micro' distribution that supports customization of comments.

    What is the smallest available?

  • Unable to see models with vCloud Director

    Hi all

    I use vCloud Director 1.5. and have created a few models in the vSphere.However when I try to import models of vSphere to vCloud, I am unable to view the created models. Please tell us what I could hurt.

    In addition, someone has user FAQ for vCloud director, if so, please let us know.

    Convert virtual computer models, then you should be able to view them to VCD using the vSphere import option.

  • vRealize device Orchestrator 6.0.3 and vCenter 5.5 5.6 U3/vCloud Director

    Hello world

    I have a few questions on the compatibility between vRO 6.0.3 and vCenter vCloud Director 5.6 and 5.5:

    In vCenter Orchestrator 5.5.2 I plugin to connect the vCO to vCenter (version

    vro2.jpg

    2. a supplementary door on vSphere Web Client integration with vRO. To do this properly first of all I must use SSO authentication mode? It won't work with LDAP authentication?

    3. anyone know if vRO works closely with vCloud Director 5.6? I found 5.5.1.2 plugin, but using this plugin, I can not connect to vCD (in vCO 5.5.2 I have no problem).




    Hello

    (1) Yes, plugin configuration is workflow (this is the approach recommended new plug-ins; the old configuration of Web UI is deprecated and will be removed at some point).

    (2) only the SSO mode is supported; LDAP won't work. Note that the UNIQUE authentication token is acquired in the name of the user logged in vSphere client to Web, so you must make sure that this user has enough permissions to connect to vRO.

    (3) it should be newer versions of this plugin, and compatibility matrix showing which plugin version is compatible with given the vCD. Don't know where it is, however.

  • vCO5.5: support vCloud Director 5.5?

    Hey guys,.

    the matrix compatibility there is no vCD version which is declared compatible with the latest version of vCO. Is this a bug in the matrix (haha) or in fact a question of fact?

    It's really important to know, because we are currently planning an upgrade of our cloud infrastructure all at the most recent 5.5 product range and, if there is no vCD which is supported by vCO 5.5 we go to 5.1 (or even at all).


    Thank you

    Igor

    There is a vCloud Director 5.5 plugin for the vCO in the making. It will be released later this year.

    Kind regards

    Christophe.

  • MCAK for vCloud Director 5.1

    Hello

    We use the most recent MultiCloud since vCloud Director but now look at upgrading to vCenter vCloud Director 5.1.

    I had seen a mention of help soon with version 5.1 of vCD, but did not see if it is available, or in what version it will be.

    Would you be able to give an indication of support for this version, please?

    Kind regards

    Paul

    You should have no problem with the latest version of MCAK vCloud Director 5.1. All the features of the IAC has been verified. What is not yet supported is 5.1 VCD API, so you would not be able to take advantage of the new features of the product/API with the adapter IN VCD (although you can always write your own custom using HTTP requests process to call the new REST API directly).

Maybe you are looking for

  • I want to upgrade the CPU on a Pavilion TS15

    Series No 5CD341285L: product not F4T54EA #ABU. At currently AMD APU A8 - 4555M with graphics HD Radeon (TM) card. Concerning Damian48

  • Don't Please HELP: 'no bootable image found, notebook will be stop"after execution of SECURE DELETION

    Hello world I have a folio elitebook - 9470 m HP and today I went into the BIOS (F10), and then I went to 'Security' and and here, I performed a 'secure erase'-> 'Notebook Hard Drive' because I wanted to clean the SSD to install Windows 7 instead of

  • PRINTER MICROSOFT DOWNLOADS

    Help!  PLEASE How can you UNINSTALL XPS Document Writer, Auo Microsoft XPSDocument Writer on RACING - BE 8499E94 & a NOTE? Last week, I downloaded these 3 & my Dell printer has not worked since. I looked for an uninstall, but does... Not in my 'Add R

  • Vista complete recovery updates

    I do a full recovery, is my operating system. Vista Home premium. It is said that the window updates no longer support updates for vista, unless you have some packages of 1 (sp1). So, how do the updates? You, Ed

  • loop support link

    On the account homepage publish Adobe Digital Publishing Solution, the support link will to Digital Publishing Solution learn & Support and the link to contact technical support goes to the home page of Adobe Digital Publishing Solution publish accou