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

Re: 503 Service Unavailable (Failed to connect to endpoint: [N7Vmacore4Http16LocalServiceSpecE:0x000000a63051bb30] _serverNamespace = / action = Allow _port = 8309)

$
0
0

I randomly have same issue. I am working on one right now is how I came across this thread. only access I have is console and SSH. tried restarted all the service and still get the 503 message and show disconnected in vcenter.  VM's are still running and responding.

ESX host responds to pings and can SSH into it fine. Just stops reporting to vcenter and web client is not working. Try to connect back to vcenter and it says host is un-avaliable, as it cant connect to the host on https.

Only way I have fixed this is reboot the host and kill all the VM's. I have not found a fix to this as of yet.

 

This looks to have been a intermittent issue for a while now and I don't see any fix or workaround for it. not good for a production environment when I have to kill running VM's.

 

ESXi Embedded Host Client - Bugs

ESXi Embedded Host Client - Bugs

Along with other posts, and only resolution is reboot host, with running VM's.

 

Mike


Re: Tiny 2 Host Environment - Configuration

$
0
0

Hi StixNZ,

 

Yes that is exactly it.

 

Also yes to the seperate VLAN for Management/vMotion networks. I’d even contemplate having no gateway on the vMotion network.

 

Kind regards.

Re: One of the disks in this virtual machine is already in use - 2 Hard Disks

Re: VMWare player or VMWare Workstation Player

$
0
0

Thanks Andre...  as I go through the install process I'll undoubtedly have more Q's.. but this is a start for me...

 

Brian

Pare-feu

Powershell code conversion to Javascript

$
0
0

Hi. Anyone know if there's a software or website to convert Powershell code to Javascript?

Or how to specifically convert this where statement example - "where { $_.Model -match "Some_Name" }"  from Powershell to a compatibe Javscript code?

Would appreciate any help.

Re: Failed to Add VSAN to VMKernal

$
0
0

From what you have said it seems like a vCenter/client/account issue - are you positive all hosts have the same build version installed and the vCenter is on equivalent or higher build? (e.g. be more specific - build 8294253 not '6.5 U2').

Any of the above potential causes can be ruled out via setting this via CLI e.g.

# esxcli vsan network ip add -i vmkX

# esxcli vsan network list

 

Bob

Transport zone

$
0
0

Hi,

How many overlay transport zone is supported by NSX-T and NSX-V ?


Re: Transport zone

$
0
0

I don't know if there's a published limit for NSX-T. I'm curious, why do you ask?

Re: Failed to Add VSAN to VMKernal

$
0
0

Thebobkin

 

First thank you for responding.

 

The command failed and all hosts are at same version as you can see below.  Any other command to try?

 

[root@TGCSESXI-7:~] esxcli vsan network ip add -i list

Unable to complete Sysinfo operation.  Please see the VMkernel log file for more details.: Sysinfo error: Not foundSee VMkernel log for details.

 

[root@TGCSESXI-7:~] esxcli vsan network list

[root@TGCSESXI-7:~] esxcli system version get

   Product: VMware ESXi

   Version: 6.5.0

   Build: Releasebuild-13635690

   Update: 2

   Patch: 88

 

[root@TGCSESXI-5:~] esxcli system version get

   Product: VMware ESXi

   Version: 6.5.0

   Build: Releasebuild-13635690

   Update: 2

   Patch: 88

 

[root@TGCSESXI-6:~] esxcli system version get

   Product: VMware ESXi

   Version: 6.5.0

   Build: Releasebuild-13635690

   Update: 2

   Patch: 88

 

[root@TGCSESXI-8:~] esxcli system version get

   Product: VMware ESXi

   Version: 6.5.0

   Build: Releasebuild-13635690

   Update: 2

   Patch: 88

 

 

Thank you

 

Tom

 

 

Update   I tried this     VMK3 is the interface that I am trying to add VSAN to

 

[root@TGCSESXI-7:~] esxcli network ip interface tag get -i vmk0

   Tags: Management

[root@TGCSESXI-7:~] esxcli network ip interface tag get -i vmk1

   Tags:

[root@TGCSESXI-7:~] esxcli network ip interface tag get -i vmk2

   Tags: VMotion

[root@TGCSESXI-7:~] esxcli network ip interface tag get -i vmk3

   Tags:

 

So then I ran this

 

[root@TGCSESXI-7:~] esxcli network ip interface tag add -i vmk3 -t VSAN

[root@TGCSESXI-7:~] esxcli network ip interface tag get -i vmk3

   Tags: VSAN

[root@TGCSESXI-7:~]

 

Now it has the Tag but when I look on vcenter the vmkernal still does not show the VSAN

 

 

Thoughts

Re: Failed to Add VSAN to VMKernal

$
0
0

Hello Tom,

 

You ran the commands wrong and thus the fail message - please look at these carefully - if ever in doubt about syntax simply type most of the command and -h , it will show you the next available options and syntax.

Please also inform of both vCenter build versions.

 

Bob

Re: Failed to Add VSAN to VMKernal

$
0
0

Hi this time I copied it from your posting

 

[root@TGCSESXI-7:~] esxcli vsan network ip add -i vmk3

Unable to load module /usr/lib/vmware/vmkmod/cmmds: Out of memory

 

 

 

vCenter  6.5.0

 

Build 7119157

 

OUT OF Memory??????????

Powershell output has extra objects on VRO

$
0
0

Hi All,

 

 

 

 

 

 

I have a simple Ps script which just returns a name in the form of an object. what i am hoever finind is that extra objects are being returned by the Ps script when it gets to vro.

 

 

My PS script looks like this.

 

 

Param

(

[Parameter(Mandatory=$true)] [string] $ServerName

 

 

)

[CmdletBinding]

 

 

 

 

$myobject = New-Object -TypeName psobject

 

 

$myobject  | Add-Member -MemberType NoteProperty -Name FName -Value "Tom"

$myobject  | Add-Member -MemberType NoteProperty -Name Rank -Value "1"

 

 

$myobject

 

 

 

However on VRO, when I process the output which is of type PowershellRemotePSObject.

 

 

 

 

var x  = output.getRootObject();

var whatsmyname

 

 

for (idx in x) {

//each item is complex objec  having two properties (name,age)

//it is mapped to PowerShellPSObject

var obj = x[idx]

System.log("Name : " + obj.getProperty('FName') + " Rank : " + obj.getProperty('Rank'));

whatsmyname = obj.getProperty('FName');

 

}

 

 

I seem to be getting 2 rows, one is completely null and the other has the results from my script.

 

 

Is there a way to eliminate the null values, I also noticed tht my PS script brings back the following when executed from vro.

 

 

IsPublic IsSerial Name                                     BaseType                                                   

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

True     False    CmdletBindingAttribute                   System.Management.Automation.CmdletCommonMetadataAttribute 

 

 

FName : Tom

Rank  : 1

 

 

 

 

I suspect that this is the extra row being converted to null, is there a way to exclude them and only return the legitimate values ?

 

 

Param ([Parameter(Mandatory=$true)] [string] $ServerName

)[CmdletBinding]

 

 

$myobject = New-Object -TypeName psobject

$myobject  | Add-Member -MemberType NoteProperty -Name FName -Value "Tom"$myobject  | Add-Member -MemberType NoteProperty -Name Rank -Value "1"

$myobject

Re: Mouse cursor lags and speedy when setting guest DPI above 150 [VMWare 15]

$
0
0

I got in use LG Ultrafine 5k now, which is set to 175% scaling (Retina 15'' set to 200%).

While on Retina 200%Host/150%Guest working fine but too small, on Ultrafine 5K 175%Host/150%Guest weird behavior of cursor came back with frame skips (cursor speed also feels over accelerated as it was with over 150% scaling in Guest on Retina, but not that much).

 

I have to open lid with Retina display and move 'VMWare Workstation' window between Retina/Ultrafine5K and see how it shakes with 'device disconnect' sound to re-adjust for different scaling between displays. After this, the frame skips of cursor in the active VMWare go away, so at least I can see him, but cursor speed still mismatches to Host OS, which is annoying.

Re: Simulating Windows server 2012 DHCP ROLE ? unable to disable the vmware dhcp (newbie needs help)

$
0
0

Hi arnoldganapin,

 

The IP address starting with 169 is what Windows computers assign to themselves when no DHCP server is found. It’s automatically assigned by the local machine in this situation.

 

The issue you have here is that you cannot have DHCP running in one VM connected to a Host only network, issuing addresses to another VM. It is truly Host only communication.

 

Options:

 

  1. Create a LAN segment and connect both VMs to the same one (no host comms)
  2. Use Bridged
  3. Create a custom network

 

Thanks and kind regards.


Re: OVF Library Item Deploy: How to set PropertyParams in additional_parameters?

Re: fedora 30 kernel 5.1 vmmon fail to biuld

Re: Mouse cursor lags and speedy when setting guest DPI above 150 [VMWare 15]

$
0
0

Just updated to 15.1 version. Seems there was changes to make 'stretch' available for all OS, and so scaling was reviewed as well. Will see how it works.

Re: vCheck Customisation

$
0
0

LucD after some thinking, I thought the best approach would be to use the $PluginCategory to reduce the potential number of reports getting generating.  However, there is a lot going in the code and things are likely to break.  Maybe something I work on the side in the future but I will leave it for now as is.

VCP DCV 2019

$
0
0

Already Certified with Version 5.5 dcv and Thankful to recent Certification policy as still the certification is valid

Now i am planning to prepare for VCP DCV 2019 and then NSX.Hope i dont have to attend any kind of training as certification Mandatory ..straight away into exams

Viewing all 252940 articles
Browse latest View live


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