Quantcast
Channel: VMware Communities : All Content - All Communities
Viewing all 176760 articles
Browse latest View live

NSX-T and GENEVE

$
0
0

Hey Folks,

Wondering if you can help me out with a problem. I have a NSX-T 2.4 environment with 3 transport nodes and 3 different segements. The problem I have is I can not ping across hosts in the Transport Overlay Zone to VM's in the same segment. When I look at the Transport Node the Tunnel is down but on the EDGE devices the tunnel is up. My suspicion is and I want to know how I can validate it is that the NIC doesn't support GENEVE offloading and I want to confirm that GENEVE offloading support is required at the NIC level.

 

TIA!


NSX-T 2.4 Error Code 99 on Login

$
0
0

{

  "module_name" : "common-services",

  "error_message" : "Internal server error has occurred.",

  "details" : "Filter execution threw an exception",

  "error_code" : "99"

}

 

Getting this error on NSX-T 2.4.0.0.0.12456291 after not having logged in for a while and a few improper reboots due to vSphere HA events. Posting up in case anybody else has seen this, or if I figure out a fix.

Clone VM and Retain its Snapshot

$
0
0

Hi,

 

Can someone please suggest if we can clone/convert vmware virtual machine and preserve its snapshot on destination machine.

Autostart on esxi 6.7U3

$
0
0

Hi all,

I'd like a VM start only after my NAS has booted and gone UP.

In order to achieve that, I have a VM stored (vm number 1) in the NAS datastore, with autostart order "1", and another vm (vm number 2) on esxi local datastore, with autostart order "2".

 

Let's say power goes off and then turns on again: both esxi and nas starts, and nas takes more time to be up than the esxi.

 

I were expecting the machine 2 boot up only after 1 have booted up (it means, nas is up and running) but I found only the number 2 is up and number 1 down and will not boot up automatically even if I see the nas datastore is up.

About NAS still disconnected when esxi booted, I have a cron that every 2 minutes reconnect any disconnected nas datastore.

 

I'd like know more about how autostart works in esxi, but did found no documentation other than how configure it.

If someone can help meon  what I am doing wrong (and why), will be really appreciated!

 

Or just pointing me to another way to solve what I were trying to get (a vm that starts only after nas is up), of course.

TIA, Andrea

Torrent clients not connectable in virtual machines.

$
0
0

Hi I'm running Workstation 12 player on Windows 10 and I'm running both Ubuntu and Windows 10 virtual machines. The issue I'm having is that torrents download fine with qbittorrent and deluge but with both I get yellow/red connection signs and get a red check mark when testing the port in deluge. I do manage to upload as well but it's really poor performance compared to what I get on my original windows and I guess this connection issue might be causing it? I have tried changing ports and even using the same port on the original windows pc which has a green connection but nothing helps.

 

So what's the issue here? Does the traffic go through another port since they are on the virtual machines? What can I do to fix it?

Update Video Ram. Wait for task to complete before proceeding to next action.

$
0
0

Hi all. My objective is the following:

1) Stop VM

2) Take snapshot

3) Update video ram to new value

4) Start VM

I want each task to be confirmed as complete before proceeding to the next task.

The VMs are in a CSV file.

The stop VM and take snapshot completes successfully. Although there's an error in the second part (screen output).

It doesn't actually update the video ram but just prints out the part stating the script will complete before powering on the VM and it gets stuck there because the VMs are actually not powered on.

 

 

The screen output is below:

*****************************************************************************************

PS C:\PowerCLI\scripts\set_video_ram> C:\PowerCLI\Scripts\set_video_ram\update_vram_poweroff_snapshot.ps1

vm1 is now being powered off. The script will confirm all VMs are powered off before proceeding to the next task...

vm2 is now being powered off. The script will confirm all VMs are powered off before proceeding to the next task...

 

 

Name                 PowerState Num CPUs MemoryGB      

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

vm1          PoweredOff 1        4.000         

Snapshot of vm1 is being taken before configuration change. The script will confirm all VM snapshots are complete before proceeding to the next task...

Exception calling "ContainsKey" with "1" argument(s): "Key cannot be null.

Parameter name: key"

At H:\PowerCLI\Scripts\set_video_ram\update_vram_poweroff_snapshot.ps1:68 char:2

+     elseif($taskTab.ContainsKey($_.Id) -and $_.State -eq "Error"){

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

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

    + FullyQualifiedErrorId : ArgumentNullException

 

vm2          PoweredOff 1        2.000         

Snapshot of vm2 is being taken before configuration change. The script will confirm all VM snapshots are complete before proceeding to the next task...

Exception calling "ContainsKey" with "1" argument(s): "Key cannot be null.

Parameter name: key"

At H:\PowerCLI\Scripts\set_video_ram\update_vram_poweroff_snapshot.ps1:68 char:2

+     elseif($taskTab.ContainsKey($_.Id) -and $_.State -eq "Error"){

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

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

    + FullyQualifiedErrorId : ArgumentNullException

 

The scrript will wait for the configuration task to be complete before the VMs are powered on

The scrript will wait for the configuration task to be complete before the VMs are powered on

The scrript will wait for the configuration task to be complete before the VMs are powered on

The scrript will wait for the configuration task to be complete before the VMs are powered on

The scrript will wait for the configuration task to be complete before the VMs are powered on

The scrript will wait for the configuration task to be complete before the VMs are powered on

The scrript will wait for the configuration task to be complete before the VMs are powered on

The scrript will wait for the configuration task to be complete before the VMs are powered on

The scrript will wait for the configuration task to be complete before the VMs are powered on

 

 

The script snippet is below:

***********************************************************************************

$newVideoRamSize = 9000

$vmlist = Import-Csv .\vmlist.csv -UseCulture

$vmlist1 = $vmlist | select -ExpandProperty VM

$taskTab = @{}

 

 

#Shutdown VMs

    foreach ($vm in $vmlist1) {

    #if($vm.Powerstate -eq "PoweredOn") { //FYI If this part is not commented out, the script will run without doing anything.

    Write-Host $vm is now being powered off. The script will confirm all VMs are powered off before proceeding to the next task... -foregroundcolor green

    $taskTab[(Stop-VM -VM $vm -Confirm:$false -RunAsync).Id] = $vm

}

#}

 

 

#Take snapshot of VMs

    $runningTasks = $taskTab.Count

while($runningTasks -gt 0){

Get-Task | % {

if($taskTab.ContainsKey($_.Id) -and $_.State -eq "Success"){

    Get-VM $taskTab[$_.Id]

    Write-Host Snapshot of $taskTab[$_.Id] is being taken before configuration change. The script will confirm all VM snapshots are complete before proceeding to the next task... -foregroundcolor green

    $tasktab[(New-Snapshot -VM $taskTab[$_.Id] -Name BeforeVideoRamChange -RunAsync).Id] = $vm

    $taskTab.Remove($_.Id)

$runningTasks--

}

}

elseif($taskTab.ContainsKey($_.Id) -and $_.State -eq "Error"){

$taskTab.Remove($_.Id)

$runningTasks--

}

}

Start-Sleep -Seconds 15

 

 

#Update Video Ram

    $runningTasks = $taskTab.Count

while($runningTasks -gt 0){

Get-Task | % {

if($taskTab.ContainsKey($_.Id) -and $_.State -eq "Success"){

    Get-VM $taskTab[$_.Id]

    if($taskTab[$_.Id].Powerstate -eq "PoweredOn")

    {return "One or more VMs is still powered on. Manually power off VMs before re-attempting."}

 

 

$vid = $taskTab[$_.Id].ExtensionData.Config.Hardware.Device | ?{$_.GetType().Name -eq "VirtualMachineVideoCard"}

    $spec = New-Object VMware.Vim.VirtualMachineConfigSpec

    $devChange = New-Object VMware.Vim.VirtualDeviceConfigSpec

    $devChange.Operation = 'edit'

    $vid.videoRamSizeInKB = $newVideoRamSize

       

    if ((!$devChange.Operation) -or (!$vid.videoRamSizeInKB))

    {return "ERROR: Unable to set video memory on $taskTab[$_.Id]}. Ensure it is powered off."}

 

Write-Host Video Memory on VM: $taskTab[$_.Id] has been successfully set to $vid.videoRamSizeInKB -foregroundcolor green

       

$devChange.Device += $vid

$spec.DeviceChange += $devChange

$taskTab[$_.Id].ExtensionData.ReconfigVM($spec)

    $taskTab.Remove($_.Id)

$runningTasks--

}

elseif($taskTab.ContainsKey($_.Id) -and $_.State -eq "Error"){

$taskTab.Remove($_.Id)

$runningTasks--

}

Start-Sleep -Seconds 15

   

Write-Host The script will wait for the configuration task to be complete before the VMs are powered on -foregroundcolor green

    }

}

 

 

#Power on VMs

    $runningTasks = $taskTab.Count

while($runningTasks -gt 0){

Get-Task | % {

if($taskTab.ContainsKey($_.Id) -and $_.State -eq "Success"){

    Get-VM $taskTab[$_.Id]

    if($taskTab[$_.Id].Powerstate -eq "PoweredOff") {

    Write-Host $taskTab[$_.Id] is now being powered on. Please wait five to ten minutes before verifying new configuration -foregroundcolor green

    $taskTab[(Start-VM -VM $taskTab[$_.Id] -Confirm:$false -RunAsync).Id] = $vm

    }

}

}

}

*****************************************************************************************

Any help to point out the issues and/or fix the script would be greatly appreciated.

Unable to edit vSAN policy because of java error

$
0
0

Hi,

when i want to change vSAN policy I face the warning message "java.lang.RuntimeException" and can not edit this policy. I also see this message when I want to use vSAN for a pool in Connection server.

Untitled.png

transport (VMDB) error-14: pipe connection has been broken

$
0
0

Hello,

 

I got this error: "transport (VMDB) error-14: pipe connection has been broken"  on some of my virtual machines and the virtual machines were restarted by HA.

Some restart tasks were unsuccessful.

Do you have any same experiences?


Converge to Embedded v6.7u3 ui : failed on firstboot

$
0
0

I try to do the convergence from the web UI with 6.7.0.40000 Build 14367737

I have a couple of VCS/PSC on two sites and replication between each PSC

The process succed on first couple, the second failed on step below

 

        {

            "key": "firstbootpart1",

            "value": {

                "description": "Run vmafd firstboot",

                "status": "FAILED"

            }

        },

I think i'm exactly in that case : VMware Knowledge Base

so I disable TSO and GSO as explained on both PSC (source and replicat embedded previously converged)

But know, how can I restart the process ? should I restore backup ?

Another question, since the first converge succeed I haven't yet decommission it, I expect to do that after full convergence, but doesn't know the best practice.

 

converge.log

 

2019-10-10T12:28:28.18Z INFO converge Validating Provided Configuration ...

2019-10-10T12:28:28.23Z INFO converge Running the ldapsearch

2019-10-10T12:28:28.23Z INFO converge Running command: ['/opt/likewise/bin/ldapsearch', '-h', 'llivmwpsc01.my.domain.lan', '-w', '******', '-x', '-D', 'cn=administrator,cn=users,dc=vsphere,dc=local', '-b', 'cn=Sites,cn=Configuration,dc=vsphere,dc=local']

2019-10-10T12:28:28.238Z INFO converge Running command ldapsearch successful

2019-10-10T12:28:28.282Z INFO converge Following solutions have been found registered to the Platform Services Controller. You may have to re-register these after convergence. Please refer to the documentation for details.

2019-10-10T12:28:29.134Z INFO converge Infra node url https://llivmwpsc01.my.domain.lan:443/sts/STSService/ is up

2019-10-10T12:28:29.205Z INFO converge Infra node url https://llivmwpsc01.my.domain.lan:443/idm/ is up

2019-10-10T12:28:29.327Z INFO converge Verify AD domain input info.

2019-10-10T12:28:29.327Z INFO converge Skipping AD Domain related checks.

2019-10-10T12:28:29.331Z INFO converge Validation completed successfully.

2019-10-10T12:28:31.384Z INFO converge Validating Provided Configuration ...

2019-10-10T12:28:31.391Z INFO converge Running the ldapsearch

2019-10-10T12:28:31.392Z INFO converge Running command: ['/opt/likewise/bin/ldapsearch', '-h', 'llivmwpsc01.my.domain.lan', '-w', '******', '-x', '-D', 'cn=administrator,cn=users,dc=vsphere,dc=local', '-b', 'cn=Sites,cn=Configuration,dc=vsphere,dc=local']

2019-10-10T12:28:31.639Z INFO converge Running command ldapsearch successful

2019-10-10T12:28:31.684Z INFO converge Following solutions have been found registered to the Platform Services Controller. You may have to re-register these after convergence. Please refer to the documentation for details.

2019-10-10T12:28:32.364Z INFO converge Collected start_time:1570710512.3636036 as a part of Telemetry

2019-10-10T12:28:32.366Z INFO converge Collected build_no:14367737 as a part of Telemetry

2019-10-10T12:28:32.366Z INFO converge Collected version:6.7.0.40000 as a part of Telemetry

2019-10-10T12:28:32.367Z INFO converge Collected client:cli as a part of Telemetry

2019-10-10T12:28:32.367Z INFO converge Collected replication_flag:False as a part of Telemetry

2019-10-10T12:28:32.383Z DEBUG converge Starting new HTTPS connection (1): localhost

2019-10-10T12:28:33.75Z DEBUG converge https://localhost:443 "POST /rest/com/vmware/cis/session HTTP/1.1" 200 None

2019-10-10T12:28:33.88Z DEBUG converge Starting new HTTPS connection (1): localhost

2019-10-10T12:28:34.92Z DEBUG converge https://localhost:443 "GET /rest/vcenter/topology/nodes HTTP/1.1" 200 None

2019-10-10T12:28:34.95Z INFO converge Collected noOfVCs:2 as a part of Telemetry

2019-10-10T12:28:34.96Z INFO converge Collected noOfPSCs:2 as a part of Telemetry

2019-10-10T12:28:34.96Z INFO converge Collected topology info as a part of Telemetry

2019-10-10T12:28:34.185Z INFO converge Infra node url https://llivmwpsc01.my.domain.lan:443/sts/STSService/ is up

2019-10-10T12:28:34.224Z INFO converge Infra node url https://llivmwpsc01.my.domain.lan:443/idm/ is up

2019-10-10T12:28:34.326Z INFO converge Verify AD domain input info.

2019-10-10T12:28:34.326Z INFO converge Skipping AD Domain related checks.

2019-10-10T12:28:34.330Z INFO converge Validation completed successfully.

2019-10-10T12:28:34.330Z INFO converge Setting the converge running flag

2019-10-10T12:28:34.347Z INFO converge Running converge on Management node.

2019-10-10T12:28:34.348Z INFO converge Executing reconfiguring steps. This will take few minutes to complete.

Please wait ...

2019-10-10T12:28:34.348Z INFO converge Downloading RPMs

2019-10-10T12:28:34.349Z INFO converge Collected client:rest as a part of Telemetry

2019-10-10T12:28:34.418Z INFO converge Custom URL repositry not configured.Use default VMware repository URL.

2019-10-10T12:28:34.421Z INFO converge  currentURL = https://vapp-updates.vmware.com/vai-catalog/valm/vmw/8d167796-34d5-4899-be0a-6daade4005a3/6.5.0.14000.latest/

2019-10-10T12:28:34.421Z INFO converge Manifest file = https://vapp-updates.vmware.com/vai-catalog/valm/vmw/8d167796-34d5-4899-be0a-6daade4005a3/6.5.0.14000.latest/manifest/manifest-latest.xml

2019-10-10T12:28:34.422Z INFO converge Running command: ['/usr/bin/wget', '--no-check-certificate']

2019-10-10T12:28:34.545Z INFO converge Downloaded file manifest-latest.xml

2019-10-10T12:28:34.546Z INFO converge Running command: ['/usr/bin/wget', '--no-check-certificate']

2019-10-10T12:28:35.73Z INFO converge Exception in downloading file : manifest-latest.xml.sha256

2019-10-10T12:28:35.91Z INFO converge Unsetting the converge running flag

2019-10-10T12:28:38.199Z INFO converge Cleanup successful with partial flag = True.

2019-10-10T12:28:38.201Z INFO converge Collected end_time:1570710518.2011995 as a part of Telemetry

2019-10-10T12:28:38.201Z INFO converge Collected status:False as a part of Telemetry

2019-10-10T12:28:38.202Z INFO converge Collected @type:convergence_telemetry as a part of Telemetry

2019-10-10T12:28:38.213Z DEBUG converge Starting new HTTP connection (1): localhost

2019-10-10T12:28:38.227Z DEBUG converge http://localhost:15080 "POST /analytics/telemetry/ph/api/hyper/send?_c=vcebc.1_0 HTTP/1.1" 201 0

2019-10-10T12:28:38.232Z DEBUG converge Pushed the Collected Data to VMWare Analytics Service as a part of  Telemetry

2019-10-10T14:16:53.773Z INFO converge Validating Provided Configuration ...

2019-10-10T14:16:53.778Z INFO converge Running the ldapsearch

2019-10-10T14:16:53.778Z INFO converge Running command: ['/opt/likewise/bin/ldapsearch', '-h', 'llivmwpsc01.my.domain.lan', '-w', '******', '-x', '-D', 'cn=administrator,cn=users,dc=vsphere,dc=local', '-b', 'cn=Sites,cn=Configuration,dc=vsphere,dc=local']

2019-10-10T14:16:53.990Z INFO converge Running command ldapsearch successful

2019-10-10T14:16:54.37Z INFO converge Following solutions have been found registered to the Platform Services Controller. You may have to re-register these after convergence. Please refer to the documentation for details.

2019-10-10T14:16:58.512Z WARNING converge Unable to query solution regiestered

2019-10-10T14:16:58.638Z INFO converge Infra node url https://llivmwpsc01.my.domain.lan:443/sts/STSService/ is up

2019-10-10T14:16:58.675Z INFO converge Infra node url https://llivmwpsc01.my.domain.lan:443/idm/ is up

2019-10-10T14:16:58.767Z ERROR converge Failed to validate sso credential. Error SoapException:

faultcode: ns0:FailedAuthentication

faultstring: Invalid credentials

faultxml: <?xml version='1.0' encoding='UTF-8'?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><S:Fault xmlns:ns4="http://www.w3.org/2003/05/soap-envelope"><faultcode xmlns:ns0="http://docs.oasis-open.org/ws-sx/ws-trust/200512">ns0:FailedAuthentication</faultcode><faultstring>Invalid credentials</faultstring></S:Fault></S:Body></S:Envelope>

2019-10-10T14:16:58.767Z ERROR converge SSO validation failed..

2019-10-10T14:16:58.773Z ERROR converge Pre-checks failed for converge.

2019-10-10T14:16:58.782Z INFO converge Unsetting the converge running flag

2019-10-10T14:17:02.816Z INFO converge Cleanup successful with partial flag = True.

2019-10-10T14:17:35.329Z INFO converge Validating Provided Configuration ...

2019-10-10T14:17:35.334Z INFO converge Running the ldapsearch

2019-10-10T14:17:35.334Z INFO converge Running command: ['/opt/likewise/bin/ldapsearch', '-h', 'llivmwpsc01.my.domain.lan', '-w', '******', '-x', '-D', 'cn=administrator,cn=users,dc=vsphere,dc=local', '-b', 'cn=Sites,cn=Configuration,dc=vsphere,dc=local']

2019-10-10T14:17:35.596Z INFO converge Running command ldapsearch successful

2019-10-10T14:17:35.689Z INFO converge Following solutions have been found registered to the Platform Services Controller. You may have to re-register these after convergence. Please refer to the documentation for details.

2019-10-10T14:17:36.639Z INFO converge Infra node url https://llivmwpsc01.my.domain.lan:443/sts/STSService/ is up

2019-10-10T14:17:36.675Z INFO converge Infra node url https://llivmwpsc01.my.domain.lan:443/idm/ is up

2019-10-10T14:17:36.763Z INFO converge Running command: ['/opt/likewise/bin/ldapsearch', '-h', 'llivmwpsc01.my.domain.lan', '-w', '******', '-x', '-D', 'cn=administrator,cn=users,dc=vsphere,dc=local', '-b', 'cn=LNIVMWVCT01.my.domain.lan,ou=Domain Controllers,dc=vsphere,dc=local']

2019-10-10T14:17:36.782Z INFO converge Replication partner provided is correct.

2019-10-10T14:17:36.783Z INFO converge Verify AD domain input info.

2019-10-10T14:17:36.784Z INFO converge Skipping AD Domain related checks.

2019-10-10T14:17:36.787Z INFO converge Validation completed successfully.

2019-10-10T14:17:38.940Z INFO converge Validating Provided Configuration ...

2019-10-10T14:17:38.949Z INFO converge Running the ldapsearch

2019-10-10T14:17:38.949Z INFO converge Running command: ['/opt/likewise/bin/ldapsearch', '-h', 'llivmwpsc01.my.domain.lan', '-w', '******', '-x', '-D', 'cn=administrator,cn=users,dc=vsphere,dc=local', '-b', 'cn=Sites,cn=Configuration,dc=vsphere,dc=local']

2019-10-10T14:17:39.195Z INFO converge Running command ldapsearch successful

2019-10-10T14:17:39.297Z INFO converge Following solutions have been found registered to the Platform Services Controller. You may have to re-register these after convergence. Please refer to the documentation for details.

2019-10-10T14:17:40.169Z INFO converge Collected start_time:1570717060.1686823 as a part of Telemetry

2019-10-10T14:17:40.171Z INFO converge Collected build_no:14367737 as a part of Telemetry

2019-10-10T14:17:40.172Z INFO converge Collected version:6.7.0.40000 as a part of Telemetry

2019-10-10T14:17:40.172Z INFO converge Collected client:cli as a part of Telemetry

2019-10-10T14:17:40.173Z INFO converge Collected replication_flag:False as a part of Telemetry

2019-10-10T14:17:40.188Z DEBUG converge Starting new HTTPS connection (1): localhost

2019-10-10T14:17:41.12Z DEBUG converge https://localhost:443 "POST /rest/com/vmware/cis/session HTTP/1.1" 200 None

2019-10-10T14:17:41.26Z DEBUG converge Starting new HTTPS connection (1): localhost

2019-10-10T14:17:42.864Z DEBUG converge https://localhost:443 "GET /rest/vcenter/topology/nodes HTTP/1.1" 200 None

2019-10-10T14:17:42.867Z INFO converge Collected noOfVCs:1 as a part of Telemetry

2019-10-10T14:17:42.868Z INFO converge Collected noOfPSCs:2 as a part of Telemetry

2019-10-10T14:17:42.868Z INFO converge Collected topology info as a part of Telemetry

2019-10-10T14:17:42.954Z INFO converge Infra node url https://llivmwpsc01.my.domain.lan:443/sts/STSService/ is up

2019-10-10T14:17:42.991Z INFO converge Infra node url https://llivmwpsc01.my.domain.lan:443/idm/ is up

2019-10-10T14:17:43.70Z INFO converge Running command: ['/opt/likewise/bin/ldapsearch', '-h', 'llivmwpsc01.my.domain.lan', '-w', '******', '-x', '-D', 'cn=administrator,cn=users,dc=vsphere,dc=local', '-b', 'cn=LNIVMWVCT01.my.domain.lan,ou=Domain Controllers,dc=vsphere,dc=local']

2019-10-10T14:17:43.92Z INFO converge Replication partner provided is correct.

2019-10-10T14:17:43.93Z INFO converge Verify AD domain input info.

2019-10-10T14:17:43.94Z INFO converge Skipping AD Domain related checks.

2019-10-10T14:17:43.99Z INFO converge Validation completed successfully.

2019-10-10T14:17:43.100Z INFO converge Setting the converge running flag

2019-10-10T14:17:43.119Z INFO converge Running converge on Management node.

2019-10-10T14:17:43.120Z INFO converge Executing reconfiguring steps. This will take few minutes to complete.

Please wait ...

2019-10-10T14:17:43.120Z INFO converge Downloading RPMs

2019-10-10T14:17:43.121Z INFO converge Collected client:rest as a part of Telemetry

2019-10-10T14:17:43.169Z INFO converge VCSA ISO is mounted. Copying RPMs from the ISO.

2019-10-10T14:17:43.180Z INFO converge ISO version : VMware-vCenter-Server-Appliance-6.7.0.40000-14367737

2019-10-10T14:17:43.180Z INFO converge VC version : VMware-vCenter-Server-Appliance-6.7.0.40000-14367737

2019-10-10T14:17:48.89Z INFO converge Collected site_guid:af685cec-89f9-4dca-872c-1b40c56be288 as a part of Telemetry

2019-10-10T14:17:48.90Z DEBUG converge e5dd6353-547d-4ecc-b908-1cc1a2156dab

2019-10-10T14:17:48.126Z DEBUG converge e4729eae-0fc8-451a-889f-20d1b60d49d7

2019-10-10T14:17:48.465Z INFO converge Store all vecs certificates.

2019-10-10T14:17:49.311Z INFO converge final json ---->

2019-10-10T14:17:49.312Z INFO converge [{'entries': [{'Entry type': 'Private Key', 'Alias': '__MACHINE_CERT', 'cert_path': '/root/velma/old_certs/__MACHINE_CERT-MACHINE_SSL_CERT.crt', 'key_path': '/root/velma/old_certs/__MACHINE_CERT-MACHINE_SSL_CERT.key'}], 'store_name': 'MACHINE_SSL_CERT', 'Number of entries in store': '1'}, {'entries': [{'Entry type': 'Private Key', 'Alias': 'machine', 'cert_path': '/root/velma/old_certs/machine-machine.crt', 'key_path': '/root/velma/old_certs/machine-machine.key'}], 'store_name': 'machine', 'Number of entries in store': '1'}, {'entries': [{'Entry type': 'Private Key', 'Alias': 'vsphere-webclient', 'cert_path': '/root/velma/old_certs/vsphere-webclient-vsphere-webclient.crt', 'key_path': '/root/velma/old_certs/vsphere-webclient-vsphere-webclient.key'}], 'store_name': 'vsphere-webclient', 'Number of entries in store': '1'}, {'entries': [{'Entry type': 'Private Key', 'Alias': 'vpxd', 'cert_path': '/root/velma/old_certs/vpxd-vpxd.crt', 'key_path': '/root/velma/old_certs/vpxd-vpxd.key'}], 'store_name': 'vpxd', 'Number of entries in store': '1'}, {'entries': [{'Entry type': 'Private Key', 'Alias': 'vpxd-extension', 'cert_path': '/root/velma/old_certs/vpxd-extension-vpxd-extension.crt', 'key_path': '/root/velma/old_certs/vpxd-extension-vpxd-extension.key'}], 'store_name': 'vpxd-extension', 'Number of entries in store': '1'}, {'entries': [{'Entry type': 'Private Key', 'Alias': 'sms_self_signed', 'cert_path': '/root/velma/old_certs/sms_self_signed-SMS.crt', 'key_path': '/root/velma/old_certs/sms_self_signed-SMS.key'}], 'store_name': 'SMS', 'Number of entries in store': '1'}, {'entries': [], 'store_name': 'APPLMGMT_PASSWORD', 'Number of entries in store': '0'}, {'entries': [{'Entry type': 'Private Key', 'Alias': 'data-encipherment', 'cert_path': '/root/velma/old_certs/data-encipherment-data-encipherment.crt', 'key_path': '/root/velma/old_certs/data-encipherment-data-encipherment.key'}], 'store_name': 'data-encipherment', 'Number of entries in store': '1'}]

2019-10-10T14:17:49.505Z INFO converge Removing computer account of vCenter on Management node.

2019-10-10T14:17:49.506Z INFO converge Running command: ['/usr/lib/vmware-vmafd/bin/domainjoin', 'leave', '--username', 'administrator', '--password', '******']

2019-10-10T14:17:49.745Z INFO converge Removed vCenter computer account from management node.

2019-10-10T14:17:49.757Z INFO converge Running Firstboots for : vmafd-firstboot

2019-10-10T14:17:59.437Z INFO converge Stopping the services ...

2019-10-10T14:17:59.445Z INFO converge <class 'list'>

2019-10-10T14:17:59.446Z INFO converge ['vmware-certificatemanagement', 'vmware-pod', 'vmware-topologysvc', 'vmware-updatemgr', 'vmware-vcha', 'vmcam', 'vmware-postgres-archiver', 'vsan-dps', 'vmware-perfcharts', 'vmware-vsan-health', 'vsphere-ui', 'vmware-eam', 'vmware-imagebuilder', 'vmware-mbcs', 'vmware-netdumper', 'vmware-rbd-watchdog', 'vmware-vsm', 'vsphere-client', 'vmware-content-library', 'vmware-sps', 'vmware-vpxd', 'vmware-vpxd-svcs', 'vmware-vpostgres']

2019-10-10T14:17:59.446Z INFO converge Stopping services

2019-10-10T14:20:25.24Z INFO converge Stopped all the services.

2019-10-10T14:20:25.54Z INFO converge Removed Old Afd db.

2019-10-10T14:20:25.68Z INFO converge Cleared old ssl certificates.

2019-10-10T14:20:25.252Z INFO converge

2019-10-10T14:20:25.253Z INFO converge Installing PSC Rpms.

2019-10-10T14:20:25.253Z INFO converge Installing rpm: /root/velma/rpm/vmware-directory-6.7.0.4837-14192624.x86_64.rpm

2019-10-10T14:20:26.240Z INFO converge Installing rpm: /root/velma/rpm/vmware-certificate-server-6.7.0.5602-14192633.x86_64.rpm

2019-10-10T14:20:27.128Z INFO converge Installing rpm: /root/velma/rpm/vmware-psc-health-6.7.0.1949-14192626.x86_64.rpm

2019-10-10T14:20:27.494Z INFO converge Installing rpm: /root/velma/rpm/VMware-cis-license-6.7.0-13714356.x86_64.rpm

2019-10-10T14:20:28.220Z INFO converge Installing rpm: /root/velma/rpm/vmware-identity-sts-6.7.0.6011-14192627.noarch.rpm

2019-10-10T14:20:35.690Z INFO converge Installing rpm: /root/velma/rpm/vmware-dns-server-1.0.0-14192631.x86_64.rpm

2019-10-10T14:20:36.509Z INFO converge PSC Rpms Installed Success.

2019-10-10T14:20:36.510Z INFO converge Running the ldapsearch

2019-10-10T14:20:36.511Z INFO converge Running command: ['/opt/likewise/bin/ldapsearch', '-h', 'llivmwpsc01.my.domain.lan', '-w', '******', '-x', '-D', 'cn=administrator,cn=users,dc=vsphere,dc=local', '-b', 'cn=ConsentConfigContainer,cn=PhoneHome,cn=Services,dc=vsphere,dc=local']

2019-10-10T14:20:36.532Z INFO converge Running command successful

2019-10-10T14:20:36.533Z INFO converge CEIP is disabled.

2019-10-10T14:20:36.533Z INFO converge Setting Install Parameters

2019-10-10T14:20:36.543Z INFO converge Install Parameters Set.

2019-10-10T14:20:37.664Z INFO converge Perform update startuptype operation in start order. startup_type=Automatic, svc_names=['vmdird', 'vmcad', 'vmdnsd', 'vmware-sts-idmd', 'vmware-certificatemanagement'], include_vmonsvcs=False include_coreossvcs=False, include_leafossvcs=False

2019-10-10T14:20:37.979Z INFO converge Successfully changed startuptype for service vmdird

2019-10-10T14:20:38.441Z INFO converge Successfully changed startuptype for service vmcad

2019-10-10T14:20:39.9Z INFO converge Successfully changed startuptype for service vmware-sts-idmd

2019-10-10T14:20:39.582Z INFO converge Successfully changed startuptype for service vmdnsd

2019-10-10T14:20:39.601Z INFO converge Successfully changed startuptype for service certificatemanagement

2019-10-10T14:20:39.605Z INFO converge Collected replication_flag:True as a part of Telemetry

2019-10-10T14:20:39.606Z INFO converge Running command: ['/opt/likewise/bin/ldapsearch', '-h', 'LNIVMWVCT01.my.domain.lan', '-w', '******', '-x', '-D', 'cn=administrator,cn=users,dc=vsphere,dc=local', '-b', 'cn=slivctapp.my.domain.lan,ou=Computers,dc=vsphere,dc=local']

2019-10-10T14:20:39.677Z WARNING converge Unable to run ldapsearch

2019-10-10T14:20:39.678Z INFO converge Collected replication_latency:0.0727686882019043 as a part of Telemetry

2019-10-10T14:20:39.678Z INFO converge Leave fed is complete

2019-10-10T14:20:39.679Z INFO converge Leave fed complete status: True

2019-10-10T14:20:39.679Z INFO converge Running Firstboots for : visl-support-firstboot,vmafd-firstboot

2019-10-10T14:26:37.832Z ERROR converge Failed to run white listed firstboot scripts. Error: {

    "problemId": null,

    "detail": [

        {

            "id": "install.ciscommon.command.errinvoke",

            "args": [

                "Command: ['run-firstboot-scripts', '--action', 'firstboot', '--subaction', 'firstboot', '--fbWhiteList', 'visl-support-firstboot,vmafd-firstboot']\nStderr: "

            ],

            "translatable": "An error occurred while invoking external command : '%(0)s'",

            "localized": "An error occurred while invoking external command : 'Command: ['run-firstboot-scripts', '--action', 'firstboot', '--subaction', 'firstboot', '--fbWhiteList', 'visl-support-firstboot,vmafd-firstboot']\nStderr: '"

        }

    ],

    "componentKey": null,

    "resolution": null

}

2019-10-10T14:26:37.849Z INFO converge Unsetting the converge running flag

2019-10-10T14:26:42.103Z INFO converge Cleanup successful with partial flag = True.

2019-10-10T14:26:42.104Z INFO converge Collected end_time:1570717602.1046734 as a part of Telemetry

2019-10-10T14:26:42.105Z INFO converge Collected status:False as a part of Telemetry

2019-10-10T14:26:42.105Z INFO converge Collected @type:convergence_telemetry as a part of Telemetry

2019-10-10T14:26:42.118Z DEBUG converge Starting new HTTP connection (1): localhost

2019-10-10T14:26:42.130Z DEBUG converge http://localhost:15080 "POST /analytics/telemetry/ph/api/hyper/send?_c=vcebc.1_0 HTTP/1.1" 201 0

2019-10-10T14:26:42.133Z DEBUG converge Pushed the Collected Data to VMWare Analytics Service as a part of  Telemetry

 

Thanks for your help

Fusion Migration Error: Failed to send http data

$
0
0

Running Fusion Pro 10 on MacOS Mojave 10.14.2

Fusion is running Windows 10

We are migrating Windows 10 from Fusion 10 to Esxi host 6.7 as VM, using the below article:

https://kb.vmware.com/s/article/2082122

 

However we get "Failed to send http data" error on upload.

Error on vCenter reads: Deploy OVA template: The task canceled by a user

 

We are connecting to vCenter via its IP address to avoid running into DNS issues.

Any advice is greatly appreciated?

VMware vSphere 6 Essentials Plus (with just two servers) - what redundancy/fault tolerance can I achieve?

$
0
0

I purchased VMware vSphere 6 Essentials Plus but I only have two servers and I was told that I should be able to have some redundancy - even if it is minimal.

Both machines are identical and right now based upon how they were deployed each one has 2-3 VM machines already running.

What I would prefer to do is have everything on one VM and have a redundant copy / image on the other that is turn off and is just basically a standby in case the other fails.

I don't even mind doing this manually because these VM's are fairly static in nature and don't really change data that often.

Just curious what options I might have - been searching for answers but thought this might be easier (FYI - very new to the VM environment)

 

Thanks,

 

James

Unable to create the installation medium - Sierra Host, High Sierra Guest

$
0
0

Just updated to Fusion 10.0.1 and I'm trying to setup a High Sierra Guest on my Sierra machine. On installation I get an error stating that it's "Unable to create the installation medium".

 

I recall seeing something similar with Fusion 8 and the Sierra developer previews, but as High Sierra is apparently supported as I guest I'm surprised that I'm getting this error.

 

How do you install a High Sierra Guest, before I installed a Sierra Guest and then upgraded but surely that should no longer be necessary.

Has anyone successfully installed the OneDrive for Business Client in a non-persistent VDI environment?

$
0
0

Has anyone successfully installed the OneDrive for Business Client in a non-persistent VDI environment?  I'm looking for a procedure to get this working.

 

I see statements from Microsoft about it being not supported, but I also see blogs and products that appear redirect the OneDrive Offline Sync capability to symbolic link or VHD container.

 

Any assistance would be appreciated.

Moving vm's from ESXi 4.0 to ESXi 6

$
0
0

We have four esx v4.0 hosts and a vcenter server on 2003.  Been running 7 years so it's time to retire.

 

The vm's are already on a new Equalogic iSCSI array.

 

I know I can't vmotion between the different hardware platforms, and vcenter server 6.0 won't manage ESXi 4.0 anyway.

 

If I bring up four new 6.0 hosts and a new vcenter server, I'm thinking I can shut down a vm, remove it from the 4.0 inventory, and add it to the 6.0 cluster.  Then boot it up.

 

Would this work?

 

Darron...

Unable to delete folder in vSphere datastore

$
0
0

In vSphere 6.7, I want to delete a folder in datastore, but the delete button is disabled.

I guessed that non-emty folders won't be deleted. However, after deleting files inside the folder, still I can not remove the folder.

Please see the picture below.

 

Untitled.png


After Windows VCenter Migration from 6.5 to VCSA 6.7 Web Client Error 1069

$
0
0

We did a really nice migration from a Windows VCenter 6.5 U3 to a VCSA 6.7 U1 in the last week. In the first place everything seems to work fine and the vast majority of functions is working fine.

Unless there is a slight error concerning the Web Client (Flash) and we can´t get any clue. every time we authenticate to the Web Client we get the internal error #1069 and if we do not want to reload the web client it is working as designed.

Our first clue was we have a damaged plugin or incompatible one, and we have to remove it:

Here we are with the mob webinterface:

extensionList["com.vmware.vim.sms"] Extension

extensionList["com.vmware.vim.vsm"] Extension

extensionList["VirtualCenter"] Extension

extensionList["com.vmware.vim.stats.report"] Extension

extensionList["com.vmware.vim.sps"] Extension

(less...)

extensionList["com.vmware.vim.vcha"] Extension

extensionList["hostdiag"] Extension

extensionList["com.vmware.vim.ls"] Extension

extensionList["com.netapp.aegis"] Extension

extensionList["com.netapp.scvm.webclient"] Extension

extensionList["com.vmware.cl"] Extension

extensionList["com.vmware.imagebuilder"] Extension

extensionList["com.vmware.ovf"] Extension

extensionList["com.vmware.vcenter.iso"] Extension

extensionList["com.vmware.vcIntegrity"] Extension

extensionList["com.vmware.vdc"] Extension

extensionList["com.vmware.vim.eam"] Extension

extensionList["com.vmware.vmcam"] Extension

extensionList["com.vmware.vsan.health"] Extension

extensionList["com.vmware.vcenter.vmtx"] Extension

extensionList["com.vmware.vsan.dp"] Extension

extensionList["com.vmware.vsphere.client.h5vsan"] Extension

extensionList["com.vmware.rbd"] Extension

extensionList["com.vmware.vcops"]

 

if the error message is displayed then following is in the vsphere_client_virgo.log:

 

[ERROR] http-nio-9090-exec-3         70041378 100412 200049 com.vmware.vise.util.logging.LogServiceImpl                       [Flex|AppErrorHandler]Error #1069

ReferenceError: Error #1069

at com.vmware.vsphere.client.views.notifications::HistoricalImportNotifier/getValidStatusCollection()

at com.vmware.vsphere.client.views.notifications::HistoricalImportNotifier/onHistoricalImportStatusDataRetrieved()

at EventFunctor/notifyTarget()

at EventFunctor/onEvent()

at flash.events::EventDispatcher/dispatchEvent()

at com.vmware.frinje::EventBus/dispatchEvent()

at com.vmware.frinje::EventBus/onEvent()

at flash.events::EventDispatcher/dispatchEvent()

at com.vmware.data.query.commands::DataRequestCommand/onMultiEntityDataReturn()

at DataAccessItem/notify()

at DataAccessItem/handleResult()

at DataAccessItem/processResult()

at com.vmware.data.query::DataAccessManager/handleDataRetrieved()

at com.vmware.data.query::DataAccessManager/onDataRetrieved()

at com.vmware.flexutil.proxies::BaseProxy/notify()

at com.vmware.flexutil.proxies::BaseProxy/result()

at com.vmware.flexutil.proxies::BaseProxy/onInvocationComplete()

at OperationInvoker/resultResponseForRequest()

at OperationInvoker/result()

at mx.rpc::AsyncToken/http://www.adobe.com/2006/flex/mx/internal::applyResult()

at mx.rpc.events::ResultEvent/http://www.adobe.com/2006/flex/mx/internal::callTokenResponders()

at mx.rpc::AbstractOperation/http://www.adobe.com/2006/flex/mx/internal::dispatchRpcEvent()

at mx.rpc::AbstractInvoker/http://www.adobe.com/2006/flex/mx/internal::resultHandler()

at mx.rpc::Responder/result()

at mx.rpc::AsyncRequest/acknowledge()

at NetConnectionMessageResponder/resultHandler()

at mx.messaging::MessageResponder/result()

 

Does anyone have an idea what is happening here?

Diminuir o tamanho do hd na maquina virtual

$
0
0

 

tem algum jeito de diminuir o tamanho do hd da maquina virtualizada?

 

 

ou da maquina virtual

 

 

aumentar eu sei q tem jeito, agora diminuir nao sei

 

 

GPU support within VMWare

$
0
0

We would like to use direct access to GPUs Nvidia Tesla P100 & V100 under Linux VMs that are hosting on VMWare ESXi 6.0 & 6.5 hosts.

Which VMWare licenses do we need in order to enable this feature?

Workstation 15.5 pro on Win 10 Pro 1903

$
0
0

Hi,

 

I have WS Pro 14 which appears to block my Windows 10 update.

 

I am considering to upgrade to WS Pro 15.5, but I need to be sure that it'll work.

 

Can someone please confirm whether Workstation 15.5 pro works on Win 10 Pro 1903?

vCD 10.0 | First time login and configuration wizard

$
0
0

Hi,

I have setup a vCD 10.0 instance and want to configure the system for the first time (Steps like adding system administrator/Connection a vCenter etc).

However, when I access the [vCD-FQDN], I see the provider login page all the time.

 

Is there any default user/password for first time configuration? How do I configure it?

Viewing all 176760 articles
Browse latest View live