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

Re: vcpu and core

$
0
0

sibsbt

Hyperthreading technology allows a single physical processor core to behave like two logical processors. The processor can run two independent applications at the same time.

While hyperthreading does not double the performance of a system, it can increase performance by better utilizing idle resources.


Re: Connect-SrmServer Cannot complete login due to an incorrect user name or password

$
0
0

Thanks a lot LucD,

 

I removed all the entries in VICrendtialStoreItem and re-added back, after which I am able to connect.

Exception calling "ListAssociatedVms" with "0" argument(s): "The operation is not supported on the object."

$
0
0

Hi,

 

I am getting the below error when I execute the below script, please help

 

Script:

Connect-VIServer 10.10.10.6

$srm = Connect-SrmServer

 

$srmApi = $srm.ExtensionData

$protectionGroups = $srmApi.Protection.ListProtectionGroups()

 

$protectionGroups | % {

    $protectionGroup = $_

    $protectionGroupInfo = $protectionGroup.GetInfo()

    # The following command lists the virtual machines associated with a protection group

    $vms = $protectionGroup.ListAssociatedVms()

    # The result of the above call is an array of references to the virtual machines at the vSphere API

    # To populate the data from the vSphere connection, call the UpdateViewData method on each virtual machine view object

    $vms | % {$_.UpdateViewData()}

    # After the data is populated, use it to generate a report

    $vms | %{

        $output = "" | select VmName, PgName

        $output.VmName = $_.Name

        $output.PgName = $protectionGroupInfo.Name

        $output

    }

} | Format-Table @{Label="VM Name"; Expression={$_.VmName} }, @{Label="Protection group name"; Expression={$_.PgName} }

 

 

Error:

Exception calling "ListAssociatedVms" with "0" argument(s): "The operation is not supported on the object."

At D:\DS\SG1.ps1:65 char:5

+     $vms = $protectionGroup.ListAssociatedVms()

+     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

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

    + FullyQualifiedErrorId : VimException

 

You cannot call a method on a null-valued expression.

At D:\DS\SG1.ps1:68 char:15

+     $vms | % {$_.UpdateViewData()}

+               ~~~~~~~~~~~~~~~~~~~

    + CategoryInfo          : InvalidOperation: (:) [], RuntimeException

    + FullyQualifiedErrorId : InvokeMethodOnNull

Re: Snapshot Overview in vSphere Web Client?

$
0
0

But there is no Quick filter in the HTML client (v6.7) 

Will VMware develop HTML as rich as it should be?

 

Thanks Didier

Re: Exception calling "ListAssociatedVms" with "0" argument(s): "The operation is not supported on the object."

Preparing of Migration to 6.5 U2

$
0
0

Hello Experts ,

 

I have some questions about our Migration from 5.5 to 6.5 .we will replace  our virtuel datacenter equipements with new ones .

 

our Vcenter 5.5  is in our old domain x.local and the new one will be in our new domain y.com.

our ESXi 5.5 are not joined to the Domain .the authentication is locally and they use the DNS of our old domain x.local

 

before migrating to 6.5 with new Domain y.com , i would migrate our Vcenter 5.5 from x.local to y.com

 

Could you tel me the steps please ? i'm afraid if there will an impact to our VMS

 

Regards

Re: vROPS Nvidia GPU Adapter not collecting DATA / ERROR java.lang.IndexOutOfBoundsException

$
0
0

Agreed..Check the documentation once....Some protocols are not supported so u need to change it.That should help i guess mobdro

Re: Correct Event Subscription for Destroy events

$
0
0

It is Disposing and they're all under Machine provisioning. Schema is Data => Lifecycle state => Lifecycle state name equals VMPSMasterWorkflow32. Disposing. I'd recommend you take a look at the docs to understand how this system works. There it will explain these various terms and what they mean.


Re: Password not accepted?

$
0
0

Are you able to access the server remotely, i.e. either through RDP, or maybe just the computer management to be able to see the event logs?

What about accessing the administrative shares (ipc$, c$, ...)?

 

André

Re: Esxi 6.7 on HP c7000 blade center

$
0
0

That was it apretiate the feed back

Executing  :

esxcfg-module -s "msix=0" elxnet 

on each of esxi( blades )  , reboot , resolved the issue with the missing vmnic definition .

 

Just for reference on the installation of vsphere

1- HPE c7000 gen3 blade Center

2- Connectivity through : HP VC FlexFabric 10Gb/24-Port Module  /  firmware   4.63 2018-08-21T19:27:31Z

 

 

 

Thanks for all who contributed

Re: Migration Method

$
0
0

Yikes.  Yeah,k that sounds like a PITA for sure.  Thanks for the heads up.

Re: ESXi upgrade from 5.5 to 6.0U3 issue

$
0
0

Could you please post the hostd logs with the backtrace ?

Re: Display battery life of host laptop while in guest VDI -- possible?

$
0
0

I am needing something similar with laptops that have been loaded with IGEL UDC. They run in appliance mode so you don't see the taskbar.  I am really needing the battery information to cross to the VDI session.

Problems accessing web client Vsphere 6.0

$
0
0

Good afternoon to your friends. I have a problem accessing the web client from my Vsphere 6. I usually access the client installed on my PC. But if I need to access another machine that does not have the client installed, and I try the web client, it returns an error. The login page appears normally, but after logging in, the following message is displayed:

 

 

A server error occurred.

 

No error message is available. :-(

Check the vSphere Web Client server logs for details.

 

 

I accessed the vsphere by ssh. To attempt to restart the client web service. So to my surprise, I'm not able to enable the shell. follows the error below:

command> shell.set --enabled True
Unknown command: 'shell.set'
Command> shell
Shell is disabled.

I also saw on some forums that this issue would be related to the VMS time zone. But I have already analyzed each and all are synchronizing the time with the Host. Has anyone ever had this problem and got some solution? Thank you all for trying to help me with this problem.

A hug to everyone.

Anyone have backup issue after a hardware upgrade?

$
0
0

Upgraded to version 14 and I am getting VSS errors/timeouts. I have ruled out just about everything else it could be related to.


Re: Delete Inactive Alerts in Bulk

$
0
0

You'll probably have to use the REST API to delete the cancelled alerts.  It's not built in to PowerCLI.  It's possible to access the API using "ExtensionData", explained here:

Using the entire API for vRealize Operations via PowerCLI - VMware PowerCLI Blog - VMware Blogs

 

However I searched and wasn't able to find the new delete API anywhere in PowerCLI. The vROps module hasn't been updated in a while so I suspect that might be why... or it's possible I missed it somewhere.

 

Either way I think it's worth noting that vROps will delete cancelled alerts automatically based on the global settings.  The default is after 30 days.  If you can work off of active alerts and think of the cancelled ones as just historical records they should clean themselves up after a while.

install

$
0
0

Please, someone, suggest me the lab number for below topics

 

1) Resource pool

 

2) storage

 

3) networking

 

4) V centre

 

I am new to VMware  please suggest me any other details

 

Many thanks in advance,

arul

Re:Retrieve the Display Name of the validator of a workflow following a User Interaction

$
0
0

Hello,

Just to clarify, you want to get the display name of the person who interacted with the User Interaction item, correct?

-D

Re: ClickOnce and UEM - Redirect LocalAppdata ?

$
0
0

We had a similar issue, but we went a different route. We created app stacks for these applications, installed the app, moved the folders/files from the local app data to a folder in program files,and created a shortcut on the desktop to the exe. This removes the element of saving the local app data folder and gives us some more flexibility with who can see the app too. This is the article we referenced when determining the best route

 

ClickOnce Applications in Enterprise Environments | Remko Weijnen's Blog (Remko's Blog)

Re: Failed to enter maintenance mode in the current VSAN date migration mode

$
0
0

Hi Bob,

 

Feedback in red, based on the below if possible let me know what you think is the cause and steps to try to rectify:

 

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

what does the error message on failure state? - Failed to enter maintenance mode in the current VSAN date migration mode due to insufficient nodes or disks in the cluster (Apologies I should have included this last bit) - It's a 6 node cluster and it's not a stretched cluster.

 

What does the evacuation precheck state with regard to space usage before and after (or the Health UI check for usage after 1 additional host failure inform) - From GUI Health Check, Disk space utilization is 80% assuming one host failure (Note data re-sync is still not fully completed so think this percentage will drop further).

 

What build version is in use? - ESXi 6.0U2  (Upgrade to 6.5U2 in progress hence why MM and FDM are needed)

 

Share RVC output of vsan.disks_stats <pathToCluster>  - Will do if still needed on a further post

 

Congestion can be expected during large resyncs - yes thought so, thanks for confirming

 

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

 

Additional Info: there is a VM taking around 33% of the full vSAN storage if this helps/matters

 

"It's not how much free space you have but where you have it" - This is interesting...would a disk balance help/increase the chances of MM with FDM to be successful or am not understanding what you exactly mean by this?

 

Thanks

Viewing all 179638 articles
Browse latest View live


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