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

Re: VSAN 6.6.1 - Erasure Coding - Deduplication and Compression

$
0
0

Let me explain,

 

I have an environment where i have a lot of VMs and converted from RAID 1 to RAID 5, 8 TB of VMs provisioned with Thin Provisioning.

 

After the conversion, the dedupe ratio decreased 0.10 x and the "USED BEFORE" of the Deduplication and Compression Overview decreased only 2 TB.

 

So i don't understand why having 8 TB RAW occupied (Using RAID1 16TB) only decrease 2 TB if i apply RAID5 and why the deduplication ratio decreases


Booting from password recovery cd

$
0
0

Memory and time has robbed me of the password for a virtual machine. Any help on booting from a recovery cd would be helpful

Re: Ignoring ReportPowerOpFinished because the VMX is shutting down

$
0
0

1. Next time attach log files - just pasting log files as text makes a post hard to read.
2. You did not ask any question - thats lame.
3. It is considered illegal to run MACOS on non Aplle hardware - so we cant help you.
Topic closed

Re: Vmware tools and Hardware updates code question

$
0
0

Im seeing on my vms for hardware:

 

ESXI 6.5 and later (Version 13)

 

So im assuming the vm's that have this are all up to date hardware wise..

 

I have a few that say ESXi 6.0 and later (version 11)

Those are the ones I need to upgrade the hardware on as I have a 6.5 esxi environment

 

Am I right?

Re: Booting from password recovery cd

$
0
0

What exactly are you asking for help on? How to boot a VM from an ISO?

Re: REST HOST configuration in vRO failing with "cannot find function getCertificateAuthorities in object DynamicWrapper"

$
0
0

That's not the same workflow.

 

The workflow I'm talking about is 'Import a certificate from URL with certificate alias'.

Re: Experience with the ESXi Side-Channel-Aware scheduler

$
0
0

Thanks for the reply.  Here is a graph of CPU ready time on 1 host.  It is a summation on a 20-core server and it is a good representation of what I am seeing on most of my hosts after enabling the scheduler.  The almost flat line is how the host looked for days/weeks leading up to the change, the break is the reboot, and the spike is the result.

 

 

ReadyTime.jpg

Re: 1703 , 1709 and 1803 are currently NOT supported with 5.9.1

$
0
0

Do you have also the Mirage.WinPE files ?

PLEASE....


Re: (Windows 8.1, 64x) Why isn't "Easy Install" an option in Set-Up Wizard?/ also "Operating System Not Found" message (see pic)

$
0
0

Hi André,

 

Thanks for the welcome!

 

What you're saying makes sense. I'll look for a way to obtain the original Windows 8.1 software then.

 

 

Ekoce

Re: VSAN 6.6.1 - Erasure Coding - Deduplication and Compression

$
0
0

Hello Lalegre,

 

 

"So i don't understand why having 8 TB RAW occupied (Using RAID1 16TB) only decrease 2 TB if i apply RAID5 and why the deduplication ratio decreases"

 

Where/how are you measuring "8TB RAW" of data?

Okay, so you have only changed some of the data from RAID1 to RAID5 - I would advise you look closer at the actual structure and usage of the components/Objects before and after changing the Storage Policy to verify how much they are using before and after.

 

"and why the deduplication ratio decreases"

Potentially as I said in the second-last sentence of my previous comment.

 

 

Bob

VMWareWorkstation 14.1.3

$
0
0

Installation of vmwareworkstation 14 went fine on redhat 6.9.

 

The problem: I can't start up or create any VM's as myself. If I run it as root than they all work. I need to find out what permission etc. that I'm missing.

Thank You.

Re: Adding VIB to ISO with PowerCLI

$
0
0

Hello!

I solved this problem as follows.

There is a driver for Realtek 8111 NIC in vib format:

     net55-r8168-8.045a-napi.x86_64.vib

It needs to be added to the iso image of ESXi 6.7 for installation on a PC:

     VMware-VMvisor-Installer-6.7.0-8169922.x86_64.iso

 

1. Download the standard SoftwareDepot from www.vmware.com:

          VMware-ESXi-6.7.0-8169922-depot.zip

2. Lunch PowerCLI.

3. In PowerCLI connect the standard SoftwareDepot by typing:

          Add-EsxSoftwareDepot -DepotUrl D:\Distrib\System\VMware\VMware-ESXi-6.7.0-8169922-depot.zip

4. Get the ImageProfile list:

          Get-EsxImageProfile

    As result:

          Name                                          Vendor               Last Modified        Acceptance Level

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

          ESXi-6.7.0-8169922-standard    VMware, Inc.     03.04.2018 2...     PartnerSupported

          ESXi-6.7.0-8169922-no-tools     VMware, Inc.     03.04.2018 2...     PartnerSupported

 

5. Clone standard ImageProfile:

          New-EsxImageProfile -CloneProfile ESXi-6.7.0-8169922-standard -Name MyProfile -Vendor Oleg

6. Since our vib file has Acceptance Level - CommunitySupported, we need to set this Acceptance Level for our ImageProfile:

          Set-EsxImageProfile -ImageProfile MyProfile -AcceptanceLevel CommunitySupported

7. Add our vib to SoftwareDepot:

          Get-EsxSoftwarePackage -PackageUrl D:\Distrib\System\VMware\net55-r8168-8.045a-napi.x86_64.vib

     As result:

          Name                     Version                        Vendor     Creation Dat

                                                                                             e

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

          net55-r8168           8.045a-napi                  Realtek   16.04.201...

     (Pay attention to the name field as a result of the command)

 

8. Add our vib to ImageProfile:

          Add-EsxSoftwarePackage -ImageProfile MyProfile -SoftwarePackage net55-r8168

9. Export ImageProfile to ISO image:

          Export-EsxImageProfile -ImageProfile MyProfile -ExportToIso -FilePath D:\Distrib\System\VMware\MyISO.iso

10. To drink coffee

Re: How to validate Deduplication and Compression for vSAN using different methods ?

$
0
0

Hello,

 

Here is the ESXi CLI script to check the per disk deduplication ratio. Please note that you may not see the saving immediately. Rather start providing the workload and vSAN will save space for you if it can.

 

localcli vsan storage list | grep 'Group UUID:' | awk '{print $5}'| sort | uniq | while read cache; do dgTotalInflate=''; echo -en "\nCache Tier Disk: $cache\n"; localcli vsan storage list | grep -B1 "Group UUID: $cache"| grep "VSAN UUID:"| awk '{print $3}' | grep -v $cache | while read cap; do diskLogUsed=$(cmmds-tool find -f json -t DISK_STATUS -u $cap | grep content | awk '{print $37}' | sed -e 's/[\t\n\r,]//g'); diskPhysUsed=$(cmmds-tool find -fjson -t DISK_USAGE -u $cap | grep content | awk '{print $19}' | sed -e 's/[\t\n\r,]//g'); dedupRatio=$( awk "BEGIN{ print "$diskLogUsed" / "$diskPhysUsed" }"); dgTotalInflate=$(awk "BEGIN{ print "$dgTotalInflate" + "$diskLogUsed"}"); echo -en "   Capacity Disk: $cap : Dedup Ratio ${dedupRatio}x\n"; dgTotalInflateGB=$(awk "BEGIN{ print "$dgTotalInflate" / 1073741824 * 1.25}"); echo "$dgTotalInflateGB" > /tmp/dgtigb.txt; done; echo -en "      Total Expected Space Inflation: $(cat /tmp/dgtigb.txt)GB\n" ; done

 

 

 

-Ashish

503 Service Unavailable (Failed to connect to endpoint...

$
0
0

Hallo,

 

wir haben bei einem aktuellen vCenter die inzwischen doch schon häufiger angetroffenen Fehlermeldung:

503 Service Unavailable (Failed to connect to endpoint: [class Vmacore::Http::NamedPipeServiceSpec:0x0000000000cbf260] _serverNamespace = / action = Allow _pipeName =\\.\pipe\vmware-vpxd-webserver-pipe)

Das Problem tritt nach einem Nuestart auf, und ist auch nach längerer Wartezeit noch präsent.

Im vpxd.lof (C:\ProgramData\VMware\vCenterServer\logs\vmware-vpx) ist folgendes zu finden:

--> [context]zKq7AVMEAAAAACbzjwAcdnB4ZAAA6kcedm1hY29yZS5kbGwAAGAMBgDOMwYA+jsCAZRZAnZweGQuZXhlAAFWRQ+B6XIQAQIgaQZNU1ZDUjEyMC5kbGwAAm3jBQPzugZudGRsbC5kbGwAAe1LDwELLD4B4hE+AeQTPgEUEm0ELdwAYXV0aHpjbGllbnQuZGxsAATetAICIGkGAm3jBQPzugYEcnoBAHskGwDbMxsAmSQhAn9PAgImUQIFzVkBa2VybmVsMzIuZGxsAAM9OAU=[/context]

2018-09-12T23:18:17.941+02:00 warning vpxd[16136] [Originator@6876 sub=Default] Failed to connect socket; <io_obj p:0x0000000010f91948, h:7356, <TCP ':: : 58895'>, <TCP '::1 : 443'>>, e: 10061(Es konnte keine Verbindung hergestellt werden, da der Zielcomputer die Verbindung verweigerte)

2018-09-12T23:18:18.941+02:00 warning vpxd[08808] [Originator@6876 sub=Default] Failed to connect socket; <io_obj p:0x0000000011c96fc8, h:7356, <TCP '0.0.0.0 : 58910'>, <TCP '192.168.212.30 : 443'>>, e: 10061(Es konnte keine Verbindung hergestellt werden, da der Zielcomputer die Verbindung verweigerte)

2018-09-12T23:18:18.998+02:00 error vpxd[10280] [Originator@6876 sub=[SSO][SsoWrapperImpl]] [AcquireToken] AcquireToken exception: class SsoClient::CommunicationException(Es konnte keine Verbindung hergestellt werden, da der Zielcomputer die Verbindung verweigerte: The remote service is not running, OR is overloaded, OR a firewall is rejecting connections.)

--> [context]zKq7AVMEAAAAACbzjwAcdnB4ZAAA6kcedm1hY29yZS5kbGwAAGAMBgDOMwYAgTwCAeEpAnNzb0NsaWVudC5kbGwAAcRTBAIgaQZNU1ZDUjEyMC5kbGwAAm3jBQPzugZudGRsbC5kbGwAASEkAgFGzwEEJxwAc3NvVXRpbC5kbGwABFUfAAW/82l2cHhkLmV4ZQAFURJtBi3cAGF1dGh6Y2xpZW50LmRsbAAG3rQCAiBpBgJt4wUD87oGBnJ6AQB7JBsA2zMbAJkkIQJ/TwICJlECB81ZAWtlcm5lbDMyLmRsbAADPTgF[/context]

2018-09-12T23:18:19.049+02:00 warning vpxd[10280] [Originator@6876 sub=VpxdAuthClient] [ConnectAndLogin] Failed to loginBySamlToken: class SsoClient::CommunicationException(Es konnte keine Verbindung hergestellt werden, da der Zielcomputer die Verbindung verweigerte: The remote service is not running, OR is overloaded, OR a firewall is rejecting connections.)

--> [context]zKq7AVMEAAAAACbzjwAcdnB4ZAAA6kcedm1hY29yZS5kbGwAAGAMBgDOMwYAgTwCAeEpAnNzb0NsaWVudC5kbGwAAcRTBAIgaQZNU1ZDUjEyMC5kbGwAAm3jBQPzugZudGRsbC5kbGwAASEkAgFGzwEEJxwAc3NvVXRpbC5kbGwABFUfAAW/82l2cHhkLmV4ZQAFURJtBi3cAGF1dGh6Y2xpZW50LmRsbAAG3rQCAiBpBgJt4wUD87oGBnJ6AQB7JBsA2zMbAJkkIQJ/TwICJlECB81ZAWtlcm5lbDMyLmRsbAADPTgF[/context]

2018-09-12T23:18:19.050+02:00 info vpxd[10280] [Originator@6876 sub=VpxdAuthClient] fallback to loginByCertificate

2018-09-12T23:18:20.089+02:00 warning vpxd[05152] [Originator@6876 sub=Default] Failed to connect socket; <io_obj p:0x00000000126c5738, h:7356, <TCP ':: : 58920'>, <TCP '::1 : 10080'>>, e: 10061(Es konnte keine Verbindung hergestellt werden, da der Zielcomputer die Verbindung verweigerte)

2018-09-12T23:18:20.339+02:00 error vpxd[10332] [Originator@6876 sub=SoapAdapter.HTTPService] Failed to read request; stream: <io_obj p:0x0000000012b835b8, h:7720, <TCP '127.0.0.1 : 8085'>, <TCP '127.0.0.1 : 58803'>>, error: class Vmacore::SystemException(Eine vorhandene Verbindung wurde vom Remotehost geschlossen: The connection is terminated by the remote end with a reset packet. Usually, this is a sign of a network problem,  timeout, or service overload.)

--> [context]zKq7AVMEAAAAACbzjwAPdnB4ZAAA6kcedm1hY29yZS5kbGwAAGAMBgDOMwYA+jsCAAAdBABETBwAjZwbAPmOHAB7JBsA2zMbAJkkIQF/TwJNU1ZDUjEyMC5kbGwAASZRAgLNWQFrZXJuZWwzMi5kbGwAAz04BW50ZGxsLmRsbAA=[/context]

2018-09-12T23:18:20.339+02:00 error vpxd[05740] [Originator@6876 sub=SoapAdapter.HTTPService] Failed to read request; stream: <io_obj p:0x0000000013ca0378, h:7756, <TCP '127.0.0.1 : 8085'>, <TCP '127.0.0.1 : 58805'>>, error: class Vmacore::SystemException(Eine vorhandene Verbindung wurde vom Remotehost geschlossen: The connection is terminated by the remote end with a reset packet. Usually, this is a sign of a network problem,  timeout, or service overload.)

--> [context]zKq7AVMEAAAAACbzjwAPdnB4ZAAA6kcedm1hY29yZS5kbGwAAGAMBgDOMwYA+jsCAAAdBABETBwAjZwbAPmOHAB7JBsA2zMbAJkkIQF/TwJNU1ZDUjEyMC5kbGwAASZRAgLNWQFrZXJuZWwzMi5kbGwAAz04BW50ZGxsLmRsbAA=[/context]

2018-09-12T23:18:20.339+02:00 error vpxd[03344] [Originator@6876 sub=SoapAdapter.HTTPService] Failed to read request; stream: <io_obj p:0x000000000f0ee198, h:7744, <TCP '127.0.0.1 : 8085'>, <TCP '127.0.0.1 : 58804'>>, error: class Vmacore::SystemException(Eine vorhandene Verbindung wurde vom Remotehost geschlossen: The connection is terminated by the remote end with a reset packet. Usually, this is a sign of a network problem,  timeout, or service overload.)

--> [context]zKq7AVMEAAAAACbzjwAPdnB4ZAAA6kcedm1hY29yZS5kbGwAAGAMBgDOMwYA+jsCAAAdBABETBwAjZwbAPmOHAB7JBsA2zMbAJkkIQF/TwJNU1ZDUjEyMC5kbGwAASZRAgLNWQFrZXJuZWwzMi5kbGwAAz04BW50ZGxsLmRsbAA=[/context]

2018-09-12T23:18:20.339+02:00 error vpxd[10680] [Originator@6876 sub=SoapAdapter.HTTPService] Failed to read request; stream: <io_obj p:0x0000000011c60ca8, h:7736, <TCP '127.0.0.1 : 8085'>, <TCP '127.0.0.1 : 58806'>>, error: class Vmacore::SystemException(Eine vorhandene Verbindung wurde vom Remotehost geschlossen: The connection is terminated by the remote end with a reset packet. Usually, this is a sign of a network problem,  timeout, or service overload.)

--> [context]zKq7AVMEAAAAACbzjwAPdnB4ZAAA6kcedm1hY29yZS5kbGwAAGAMBgDOMwYA+jsCAAAdBABETBwAjZwbAPmOHAB7JBsA2zMbAJkkIQF/TwJNU1ZDUjEyMC5kbGwAASZRAgLNWQFrZXJuZWwzMi5kbGwAAz04BW50ZGxsLmRsbAA=[/context]

2018-09-12T23:18:20.339+02:00 error vpxd[20476] [Originator@6876 sub=SoapAdapter.HTTPService] Failed to read request; stream: <io_obj p:0x0000000012706128, h:7704, <TCP '127.0.0.1 : 8085'>, <TCP '127.0.0.1 : 58812'>>, error: class Vmacore::SystemException(Eine vorhandene Verbindung wurde vom Remotehost geschlossen: The connection is terminated by the remote end with a reset packet. Usually, this is a sign of a network problem,  timeout, or service overload.)

--> [context]zKq7AVMEAAAAACbzjwAPdnB4ZAAA6kcedm1hY29yZS5kbGwAAGAMBgDOMwYA+jsCAAAdBABETBwAjZwbAPmOHAB7JBsA2zMbAJkkIQF/TwJNU1ZDUjEyMC5kbGwAASZRAgLNWQFrZXJuZWwzMi5kbGwAAz04BW50ZGxsLmRsbAA=[/context]

2018-09-12T23:18:20.339+02:00 error vpxd[10308] [Originator@6876 sub=SoapAdapter.HTTPService] Failed to read request; stream: <io_obj p:0x00000000147b28f8, h:7748, <TCP '127.0.0.1 : 8085'>, <TCP '127.0.0.1 : 58800'>>, error: class Vmacore::SystemException(Eine vorhandene Verbindung wurde vom Remotehost geschlossen: The connection is terminated by the remote end with a reset packet. Usually, this is a sign of a network problem,  timeout, or service overload.)

--> [context]zKq7AVMEAAAAACbzjwAPdnB4ZAAA6kcedm1hY29yZS5kbGwAAGAMBgDOMwYA+jsCAAAdBABETBwAjZwbAPmOHAB7JBsA2zMbAJkkIQF/TwJNU1ZDUjEyMC5kbGwAASZRAgLNWQFrZXJuZWwzMi5kbGwAAz04BW50ZGxsLmRsbAA=[/context]

2018-09-12T23:18:20.339+02:00 error vpxd[19592] [Originator@6876 sub=SoapAdapter.HTTPService] Failed to read request; stream: <io_obj p:0x000000000f07e148, h:7624, <TCP '127.0.0.1 : 8085'>, <TCP '127.0.0.1 : 58785'>>, error: class Vmacore::SystemException(Eine vorhandene Verbindung wurde vom Remotehost geschlossen: The connection is terminated by the remote end with a reset packet. Usually, this is a sign of a network problem,  timeout, or service overload.)

--> [context]zKq7AVMEAAAAACbzjwAPdnB4ZAAA6kcedm1hY29yZS5kbGwAAGAMBgDOMwYA+jsCAAAdBABETBwAjZwbAPmOHAB7JBsA2zMbAJkkIQF/TwJNU1ZDUjEyMC5kbGwAASZRAgLNWQFrZXJuZWwzMi5kbGwAAz04BW50ZGxsLmRsbAA=[/context]

2018-09-12T23:18:20.339+02:00 error vpxd[06796] [Originator@6876 sub=SoapAdapter.HTTPService] Failed to read request; stream: <io_obj p:0x0000000013f74348, h:7792, <TCP '127.0.0.1 : 8085'>, <TCP '127.0.0.1 : 58813'>>, error: class Vmacore::SystemException(Eine vorhandene Verbindung wurde vom Remotehost geschlossen: The connection is terminated by the remote end with a reset packet. Usually, this is a sign of a network problem,  timeout, or service overload.)

--> [context]zKq7AVMEAAAAACbzjwAPdnB4ZAAA6kcedm1hY29yZS5kbGwAAGAMBgDOMwYA+jsCAAAdBABETBwAjZwbAPmOHAB7JBsA2zMbAJkkIQF/TwJNU1ZDUjEyMC5kbGwAASZRAgLNWQFrZXJuZWwzMi5kbGwAAz04BW50ZGxsLmRsbAA=[/context]

2018-09-12T23:18:20.339+02:00 error vpxd[09456] [Originator@6876 sub=SoapAdapter.HTTPService] Failed to read request; stream: <io_obj p:0x0000000013bec1b8, h:7796, <TCP '127.0.0.1 : 8085'>, <TCP '127.0.0.1 : 58850'>>, error: class Vmacore::SystemException(Eine vorhandene Verbindung wurde vom Remotehost geschlossen: The connection is terminated by the remote end with a reset packet. Usually, this is a sign of a network problem,  timeout, or service overload.)

--> [context]zKq7AVMEAAAAACbzjwAPdnB4ZAAA6kcedm1hY29yZS5kbGwAAGAMBgDOMwYA+jsCAAAdBABETBwAjZwbAPmOHAB7JBsA2zMbAJkkIQF/TwJNU1ZDUjEyMC5kbGwAASZRAgLNWQFrZXJuZWwzMi5kbGwAAz04BW50ZGxsLmRsbAA=[/context]

2018-09-12T23:18:20.479+02:00 error vpxd[17564] [Originator@6876 sub=SoapAdapter.HTTPService] Failed to read request; stream: <io_obj p:0x000000000f1148b8, h:7148, <TCP '127.0.0.1 : 8085'>, <TCP '127.0.0.1 : 58703'>>, error: class Vmacore::SystemException(Eine vorhandene Verbindung wurde vom Remotehost geschlossen: The connection is terminated by the remote end with a reset packet. Usually, this is a sign of a network problem,  timeout, or service overload.)

--> [context]zKq7AVMEAAAAACbzjwAPdnB4ZAAA6kcedm1hY29yZS5kbGwAAGAMBgDOMwYA+jsCAAAdBABETBwAjZwbAPmOHAB7JBsA2zMbAJkkIQF/TwJNU1ZDUjEyMC5kbGwAASZRAgLNWQFrZXJuZWwzMi5kbGwAAz04BW50ZGxsLmRsbAA=[/context]

2018-09-12T23:18:21.119+02:00 warning vpxd[06560] [Originator@6876 sub=Default] Failed to connect socket; <io_obj p:0x0000000014366a88, h:7356, <TCP '0.0.0.0 : 58925'>, <TCP '127.0.0.1 : 10080'>>, e: 10061(Es konnte keine Verbindung hergestellt werden, da der Zielcomputer die Verbindung verweigerte)

2018-09-12T23:18:21.119+02:00 error vpxd[10280] [Originator@6876 sub=httpUtil] Error in sending request: class Vmacore::SystemException(Es konnte keine Verbindung hergestellt werden, da der Zielcomputer die Verbindung verweigerte: The remote service is not running, OR is overloaded, OR a firewall is rejecting connections.)

--> [context]zKq7AVMEAAAAACbzjwARdnB4ZAAA6kcedm1hY29yZS5kbGwAAGAMBgDOMwYA+jsCAAAdBABETBwAVBccAEL+GwDPFhwA+Y4cAHskGwDbMxsAmSQhAX9PAk1TVkNSMTIwLmRsbAABJlECAs1ZAWtlcm5lbDMyLmRsbAADPTgFbnRkbGwuZGxsAA==[/context]

2018-09-12T23:18:21.119+02:00 error vpxd[10280] [Originator@6876 sub=ServerAccess] Remote login failed: class Vim::Fault::HttpFault::Exception(Fault cause: vim.fault.HttpFault

--> )

--> [context]zKq7AVMEAAAAACbzjwAbdnB4ZAAA6kcedm1hY29yZS5kbGwAAGAMBgDOMwYA+jsCAZRZAnZweGQuZXhlAAFWRQ+B6XIQAQIgaQZNU1ZDUjEyMC5kbGwAAm3jBQPzugZudGRsbC5kbGwAAe1LDwEfID4Bp09tAR8UbQQt3ABhdXRoemNsaWVudC5kbGwABN60AgIgaQYCbeMFA/O6BgRyegEAeyQbANszGwCZJCECf08CAiZRAgXNWQFrZXJuZWwzMi5kbGwAAz04BQ==[/context]

2018-09-12T23:18:21.135+02:00 error vpxd[10280] [Originator@6876 sub=AuthzStorageProvider] [AuthzStorageProvider::CreateMonitorClient] Failed to connect to IS: <class Vmomi::Fault::HostCommunication::Exception(Fault cause: vmodl.fault.HostCommunication

--> )

--> [context]zKq7AVMEAAAAACbzjwAadnB4ZAAA6kcedm1hY29yZS5kbGwAAGAMBgDOMwYA+jsCAfVNAHZtb21pLmRsbAAB/nEFgs4xGQF2cHhkLmV4ZQADIGkGTVNWQ1IxMjAuZGxsAANt4wUE87oGbnRkbGwuZGxsAAIfID4Cp09tAh8UbQUt3ABhdXRoemNsaWVudC5kbGwABd60AgMgaQYDbeMFBPO6BgVyegEAeyQbANszGwCZJCEDf08CAyZRAgbNWQFrZXJuZWwzMi5kbGwABD04BQ==[/context]>

2018-09-12T23:18:21.135+02:00 info vpxd[10280] [Originator@6876 sub=AuthzStorageProvider] [AuthzStorageProvider::CreateMonitorClient] Retry for this error: attempt count 1

2018-09-12T23:18:21.681+02:00 error vpxd[08856] [Originator@6876 sub=Default opID=HB-host-9@61466-3d706ed5] [VdbStatement] Execute result code: -1

2018-09-12T23:18:21.681+02:00 error vpxd[08856] [Originator@6876 sub=Default opID=HB-host-9@61466-3d706ed5] [VdbStatement] SQL execution failed: DELETE FROM VPX_NIC WHERE ENTITY_ID = ?

2018-09-12T23:18:21.681+02:00 error vpxd[08856] [Originator@6876 sub=Default opID=HB-host-9@61466-3d706ed5] [VdbStatement] Execution elapsed time: 6 ms

2018-09-12T23:18:21.681+02:00 error vpxd[08856] [Originator@6876 sub=Default opID=HB-host-9@61466-3d706ed5] [VdbStatement] Statement diagnostic data from driver is 08S01:0:34:Could not receive the response, communication down ??;

--> no connection to the server

System: Windows Server 2008R2

Version: vCenter Server 6.7.0.11247

 

Jemand eine Idee, wie ich den Fehler los bekomme, ohne den vCenter neu zu installieren?

 

Danke und Gruß

Re: VMware Fusion License?

$
0
0

Hi Mikero,

 

Thanx for your time and concern.

 

No, I didn't sent a tiket with support yet but I will since I live in France and a phone call abroad may be very expensive.

 

With regard to my purchase, yes I did it from the official VMware store.

 

Unfortuantely, I got an HDD failure few months ago and lost most of my e-mails, one of those been the registration key for Fusion.

 

Fortunately, I saved my registration key on a spare disk.

 

However, as you can see below, Fusion 8.5.8 works fine (currently, I run Windows 10 Pro 64, Ubuntu 18.04.1 64 and Linux 19.1 64 in 3 different VMs).

 

Fusion.png

 

So, what's the best way to get an upgrade without being obliged to pay the full tag ?

 

TIA.

Philippe


services/daemons in GUI vs command line

$
0
0

vSphere 6.5

 

I notice after I've enabled wbem via esxcli system wbem set -e true, it still shows 'CIM Server' service 'stopped' in vSphere Web client > Host > configure > Security Profile > Services > Edit. It could be '-e true' only means it's enabled but not started? This makes me wonder, is there a side-by-side list of services/daemons visible in shell vs in GUI so I know what to expect when making changes in the services?

 

Thanks,

Re: change win guest IP address

Re: GSAN status returns to degraded

$
0
0

SavkoorSuhas that fixes the gsan degraded issue, although I have one question on your procedure. Don't I need to place back the drive from dependent to Independent persistent?

Re: Missing attributes for HW v14 VMs

$
0
0

VMware Tools are running and no indications of errors in the vmware.log file for the VM. I think the VM could be off and you should still get this information from the CLI.

 

Good news, I found a solution!  After much troubleshooting, I think I figured out what I did. I used to run PowerCLI from the old-school PowerCLI icon which would execute a script on startup, leaving you with a window like this:

  PowerCLI Execution.png

By running plain old PowerShell and manually executing "Import-Module VMware.PowerCLI" before I run my script, I am able to get output when I query a VM.  Interesting enough, I now get the new HardwareVersion property in my output that I didn't get in my output before.

Final.png

Thank you again for your assistance!

Re: Script to attach VMware tools and HW version update baselines to a set of VMs (from csv file)?

$
0
0

I understand, but do the lines above return anything?
The error message seems to say that $ESXi is empty.

Viewing all 228535 articles
Browse latest View live


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