Quantcast
Channel: VMware Communities: Message List
Viewing all 247559 articles
Browse latest View live

Re: vSphere HA agent on this host cannot reach some of the management network addresses

$
0
0

I know what I did wrong:   I shut down a host in my cluster without first putting it in maintenance mode.  All other hosts in the cluster complained with the same warnng:

 

vSphere HA agent on this host cannot reach some of the management network addresses

 

The host that I shut down was long gone ; I couldn't add it back to the cluster.   I did as suggsted above:

 

I stopped HA for the cluster.

I started HA for the cluster.

 

My cluster configuration settings were maintained; there was no need for me to configure anything else.

All of the hosts in the cluster cleared the warning message.


Dynamic Input Values Based on other Inputs

$
0
0

Hi,

 

My Orchestrator server has multiple domains connected. I want to create a workflow that searches one domain for a user, presents a list of users. When a user is selected, the workflow will create a user in the other domain based on the selected user. While googling how to search for a user and get a list presented I came across this Dynamic Input Values Based on other Inputs which basically does what I want. When I run this workflow, it only searches the default domain which is not the one I want to search. I guess I could change what is the default domain, but I´m unsure if that will brake anything else, so I am looking for a solution that will allow me to search the domain of my choice.

 

I´m not a programmer or very experienced at scripting, but trying to learn. Please keep this in mind.

 

Orchestrator version is 6.0.5. If this easier done in a later version, please let me know what version and how this is solved in that version.

 

Thanks in advance!

 

GB

Re: ESXi 6.5 Storage issue

$
0
0

Lenovo System X 3650 M5 and I'm sorry i was mistaken on the RAID Controller, must have been a different one i was working on earlier.  It is a ServRAID M5210 by LSI.

Re: Dynamic Input Values Based on other Inputs

$
0
0

I authored that article

 

I was dealing with a single domain environment.. so, for you, in the section of the article that is "Create a findUserByName Action",

Update the first line to take three parameters:

See the API explorer "ActiveDirectory" object's searchRecursively method for the three...

1st: Type (string)

2nd: Query (string)

3rd: adServer (AD_Host)

 

Then, when you use the action, you'll just need to pass in the AD_Host object of the domain you wish to query.

Re: Get-vmhost shows duplicates

$
0
0

I'm misinterpreting the get-vmhost column that shows the same "connected" state for the duplicate entities even though it doesn't mean the same thing?

 

And the duplicate vmhosts and vm entities that are returned by get-vmhost and get-vm as a result of being connected to both vcenter and to each host individually is not an issue?

 

I cannot get Get-EsxCli to run without having having established a direct connection to the host in question.

Re: Deploying a VM from a Content Library through the API with Powershell Help

$
0
0

Is that a master or a subscribed content library from which you are pulling the template?

Seems there were issues with vSphere 6.0 master Content libraries.

 

Unfortunately can't test your code (no more vSphere 6)

Re: Multiple VLANs with Linked Clones

$
0
0

That KB item is for powercli v6.0 or earlier. Does not work with powercli 6.5

Export VM info

$
0
0

Long time lurker and my first post in VMware forums! Woo Hoo

 

In preparation for a storage migration project, I setup annotations for all VMs in the datacenter to indicate what Environment, Metallic, App Tier they belong to.

So now, while I can list VM information based on their properties obtained from Get-View, I cannot figure out how to list out data from the Annotations I set up .

 

$vms = Get-Datastore | where {$_.Name -like "*Tier2*"} | Get-VM

foreach($vm in $vms){

Get-VM -Name $vm | Select Name, @{N="Cluster";E={Get-Cluster -VM $_}}, @{N="ESX Host";E={Get-VMHost -VM $_}},@{N="Datastore";E={Get-Datastore -VM $_}},@{N="IP";E={$_.ExtensionData.Summary.Guest.IpAddress}},@{N="PowerState";E={$_.ExtensionData.runtime.powerstate}} | ft -AutoSize

 

 

The script above gives me an output as under

Name     Cluster     ESX Host     Datastore     IP     PowerState

 

How can I add information from annotations I set up for my VMs so that the output looks like the following:

Name     Cluster     ESX Host     Datastore     IP     PowerState     Environment     Metallic     AppTier

 

Thank you very much!


Re: Get-vmhost shows duplicates

$
0
0

Yes and no.

Have a look at the DefaultVIServerMode option in the Set-PowerCLICOnfiguration cmdlet, that explains why you can connect to multiple vSphere servers (vCenter and ESXi nodes) and get duplicate entries returned for Get-VMHost and Get-VM (in each case, one line for the vCenter connection, and one for the VMHost connection).

 

The problem you seem to be having with Get-EsxCli I can't explain at the moment without further info.

But I can guarantee you that for me, and others, it works with just a vCenter connection.

Re: Export VM info

$
0
0

Welcome!

 

Try like this

 

Get-Datastore|where {$_.Name -like"*Tier2*"} |Get-VM|

SelectName,

    @{N="Cluster";E={Get-Cluster-VM$_}},

    @{N="ESX Host";E={Get-VMHost-VM$_}},

    @{N="Datastore";E={Get-Datastore-VM$_}},

    @{N="IP";E={$_.ExtensionData.Summary.Guest.IpAddress}},

    @{N="PowerState";E={$_.ExtensionData.runtime.powerstate}},

    @{N='Environment';E={Get-Annotation-Entity$_-NameEnvironment|select-ExpandPropertyValue}},

    @{N='Metalic';E={Get-Annotation-Entity$_-NameMetalic|select-ExpandPropertyValue}},

    @{N='AppTier';E={Get-Annotation-Entity$_-NameAppTier|select-ExpandPropertyValue}}

 

Re: ESXi 6.5 Storage issue

$
0
0

What is the output of esxcli storage core device list

Re: VMware ESXi 6.5.0 intaller fails to recognize Intel Xeon D-1541  x552 NIC

$
0
0

You'll have to use image builder to inject that VIB and then use the resulting image in your PXE configuration.

Re: Newly deployed PSC appliance setup is stuck at 40%

$
0
0

What is the version of the destination ESXi host on which you tried to deploy the PSC? Can you show screenshots of your installation? Usually when it fails at this point, there is something that's either wrong in the infrastructure or in the values provided.

Re: Fail to convert P2V at 3% with error. Host key can't be retrieved

$
0
0

The issue here is that the converter us the same interface as those configured for the VM.

During the VM conversion setup wizard, if the network interface is not connected to the same network as the remaining components, the transport of the data will not happen.

VMware should have used a different temporary connection to perform the transport of the data from the source to the target VM host.

Re: vSphere 6.5 - Active/Active NICs to a Cisco SG550XG LAG Issues

$
0
0

I didn't catch that in the initial post. Yeah, if you only have those algorithms available on the switch you're kinda out of luck there since that is a requirement.


Re: Error: Tech preview of vRO vCenter plug-in for vSphere 6.5 - Version 6.5.0.7646854

$
0
0

Thanks, I didn't noticed it truncated the ends      Here's the entire error:

 

2018-01-26 13:45:35.200-0600 [serverHealthMonitorScheduler-1] WARN  {} [SiteAffinityServerEndpointProvider] CDC not configured java.lang.NoClassDefFoundError: com/vmware/identity/cdc/CdcFactory

2018-01-26 13:46:18.385-0600 [https-jsse-nio-0.0.0.0-8281-exec-6] WARN  {} [SDKModuleDescription] Unable to execute Plug-in 'invalidateAll' on module 'VC', reason : Unable to perform operation 'invalidateAll' on finder '_ROOT' reason : null

2018-01-26 13:46:18.394-0600 [https-jsse-nio-0.0.0.0-8281-exec-2] ERROR {} [VcoDelegatingWebFacade] Server Error...

ch.dunes.model.sdk.SDKFinderException: Unable to perform operation 'fetchRelation' on finder '_ROOT' reason : null

at ch.dunes.vso.sdk.SDKFinder.fetchRelation(SDKFinder.java:375)

at ch.dunes.vso.sdk.SDKFinder._findRelation(SDKFinder.java:352)

at ch.dunes.vso.sdk.SDKFinder.findRelation(SDKFinder.java:267)

at ch.dunes.vso.sdk.ModulesFactory.findRelation(ModulesFactory.java:652)

at com.vmware.o11n.sdk.EnhancedScriptingSDK.findRelation(EnhancedScriptingSDK.java:128)

at com.vmware.o11n.service.sdk.SdkModuleServiceImpl.findRelation(SdkModuleServiceImpl.java:79)

at com.vmware.o11n.service.factory.VcoFactoryFacade.findRelation(VcoFactoryFacade.java:1875)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)

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

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

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

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

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

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

at sun.reflect.GeneratedMethodAccessor354.invoke(Unknown Source)

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

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

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

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

at com.sun.proxy.$Proxy23.invokeOperation(Unknown Source)

at sun.reflect.GeneratedMethodAccessor353.invoke(Unknown Source)

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

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

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

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

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:80)

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

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

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

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

at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)

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

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

at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:317)

at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127)

at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91)

at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)

at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:114)

at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)

at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111)

at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)

at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170)

at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)

at org.springframework.security.web.authentication.www.BasicAuthenticationFilter.doFilterInternal(BasicAuthenticationFilter.java:215)

at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)

at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)

at com.vmware.o11n.web.auth.http.TokenAuthenticationFilter.doFilter(TokenAuthenticationFilter.java:66)

at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)

at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:64)

at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)

at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)

at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)

at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)

at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)

at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)

at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)

at org.springframework.security.web.access.channel.ChannelProcessingFilter.doFilter(ChannelProcessingFilter.java:157)

at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)

at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:214)

at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:177)

at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)

at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)

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

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

at com.vmware.o11n.service.spring.bootstrap.SecureSerializationFilter.doFilter(SecureSerializationFilter.java:30)

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

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

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:193)

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

at com.vmware.o11n.service.spring.bootstrap.WebRemotingActiveNodeFilter.doFilter(WebRemotingActiveNodeFilter.java:38)

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

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

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

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

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

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

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

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

at org.apache.catalina.valves.AbstractAccessLogValve.invoke(AbstractAccessLogValve.java:624)

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

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

at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:799)

at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)

at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:861)

at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1455)

at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)

at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)

at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)

at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)

at java.lang.Thread.run(Thread.java:748)

Caused by: java.lang.NullPointerException

at com.vmware.o11n.sdk.modeldriven.AbstractModelDrivenAdaptor.createPluginFactory(AbstractModelDrivenAdaptor.java:104)

at com.vmware.o11n.sdk.modeldriven.AbstractModelDrivenAdaptor.createPluginFactory(AbstractModelDrivenAdaptor.java:36)

at ch.dunes.vso.sdk.SDKDatasource$1.create(SDKDatasource.java:263)

at ch.dunes.vso.sdk.PluginFactoryCreator.getPluginFactory(PluginFactoryCreator.java:35)

at ch.dunes.vso.sdk.SDKPluginFactoryInvoker.getPluginFactory(SDKPluginFactoryInvoker.java:329)

at ch.dunes.vso.sdk.SDKPluginFactoryInvoker.fetchRelation(SDKPluginFactoryInvoker.java:42)

at ch.dunes.vso.sdk.SDKFinder.fetchRelation(SDKFinder.java:377)

... 94 more

2018-01-26 13:46:18.396-0600 [https-jsse-nio-0.0.0.0-8281-exec-2] ERROR {} [VcoFactoryServiceFacadeProxy] ch.dunes.util.DunesServerException: Unable to perform operation 'fetchRelation' on finder '_ROOT' reason : null

Re: Esxi 6.5 Active Directory Integration

$
0
0

You can change the group by changing the advanced ESXi host parameter called Config.HostAgent.plugins.hostsvc.esxAdminsGroup.

Re: Esxi 6.5 Active Directory Integration

$
0
0

And make sure the Active Directory firewall rule is enabled.

 

Re: Error: Tech preview of vRO vCenter plug-in for vSphere 6.5 - Version 6.5.0.7646854

$
0
0

And what vRO version is this? Is it in a cluster?

Re: Intel 82599 10 Gigabit Dual Port Network Adapter missing after ESXi 6.0 to 6.5u1 upgrade

$
0
0

What's the output of vsish -e get /net/pNics/vmnicN/properties | grep Driver where vmnicN is the number representing the vmnic backed by that adapter?

Viewing all 247559 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>