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

Re: Duplicate IP Address

$
0
0

Hi Ashilkrishan,

 

I've done it already. Disabled eth0 and try pinging the IP address and nothing replies. That's why I'm pretty sure there is no duplicate.

 

I attach an image of the error.

 

Thanks


Re: Duplicate IP Address

$
0
0

That's strange. Please try the following:

 

1. Go to edit settings of SRM VM and uncheck the network adapter

2. Power off SRM appliance --> Enable the network adapter from edit settings and power it on VM

3. Launch the VM console and check for any errors related to IP conflicts. If reported,  would see similar logging captured drconfig.log with more details (/var/log/vmware/srm)

Re: VSAN 6.7 U3a - Failed to extract requested data

$
0
0

It took me a few weeks of banging my head against the wall with this same exact error. This is what you need to do get through it..

 

1. update the filename of check-trust-anchors to check-trust-anchors.sh

2. make sure you place the file into the /tmp folder.

3. cd /tmp

4. chmod 755 check-trust-anchors.sh

5. sed -i -e 's/\r$//' check-trust-anchors.sh

6. ./check-trust-anchors.sh -cml -f

 

Take care.

Re: Can't find gcc version to compile linux kernel modules

$
0
0

The trick works for me on Debian Testing (Linux deb 5.8.0-3-amd64 #1 SMP Debian 5.8.14-1 (2020-10-10)) for VMware Workstation 16

Re: how to increase SDDC limit for org to 6 SDDCs and 80 hosts

$
0
0

Open a chat support request, they will get the necessary tickets open.

PowerCLi script to Upload files into datastores for multiple hosts in parallel

$
0
0

Hello Friends,

 

Recently i've got a scenario where i have to upload the files into multiple hosts in their local datastores around 2000+ boxes. I'm trying below scripts to upload the files to selected 50 hosts in parallel. but somehow script is not running as per our expectation. Any help would be highly appreciated here.

 

Script object: master script should initiate both file upload scripts in parallel for multiple hosts at a time.

 

Master script:

===========

$hosts= Get-Content "C:\HostList.txt"

 

 

foreach ($esx in $hosts) {

 

Write-Host "Running File upload1 script on host: $esx ..."  -ForegroundColor Yellow

#.\Test_FileUpload.ps1 -HostName $esx -User "XXXX"  -Pswd "XXXX"  

Write-Host "Running File upload2 script on host: $esx ..."  -ForegroundColor Yellow

#.\Test_FileUpload2.ps1 -HostName $esx -User "XXX"  -Pswd "XXXX"

}

 

script2:Test_FileUpload.ps1

===========

Param(

[string]$HostName,

[string]$User,

[string]$Pswd

)

 

$fileName = "C:\Users\New folder\DELL-T330\ESXi670-202008001.zip"

#$tgtFolder = 'ISO'

$StartTime = Get-Date

 

 

Write-Host "************************************************" -ForegroundColor Cyan

Write-Host "Please wait while connecting the host: $HostName " -ForegroundColor Yellow

Write-Host "************************************************" -ForegroundColor Cyan

 

 

Connect-VIServer -Server $HostName -user $User -Password $Pswd

Write-Host "connected to the server: $HostName" -ForegroundColor Green

 

 

$datastores = Get-VMHost $HostName | Get-Datastore | where{$_.name -like "datastore*"}

 

 

    foreach($ds in $datastores){

   

    New-PSDrive -Location $ds -Name DS -PSProvider VimDatastore -Root "\" > $null

    Write-Host "New ISO folder has been created under DS: $ds " -ForegroundColor Green

     New-Item -Path DS:\ISO -ItemType Directory

    

     $tgtFolder ='ISO'

     New-PSDrive -Location $ds -Name DS1 -PSProvider VimDatastore -Root "\" > $null

  

    if(!(Test-Path -Path "DS1:/$($tgtFolder)")){

        New-Item -ItemType Directory -Path "DS1:/$($tgtFolder)" > $null

    }

    Write-Host "DS copy is in-progres.. Pls wait" -ForegroundColor Yellow

    Copy-DatastoreItem -Item $fileName -Destination "DS1:/$($tgtFolder)"

   

    Remove-PSDrive -Name DS -Confirm:$false

    Remove-PSDrive -Name DS1 -Confirm:$false

}

 

Write-Host " DS copy task has completed for host: $fileName" -ForegroundColor Green

 

$EndTime = Get-Date

$TotalTime = New-TimeSpan –Start $StartTime –End $EndTime #| select -expandproperty Seconds

Write-Host "************************************************" -ForegroundColor Cyan

Write-Host "Total time taken to complete the ISO copy: $TotalTime " -ForegroundColor Green

Write-Host "************************************************" -ForegroundColor Cyan

 

 

script3:Test_FileUpload2

==========

Param(

[string]$HostName,

[string]$User,

[string]$Pswd

)

 

$fileName = "C:\Users\New folder\DELL-T330\VMware-VMvisor-Installer-6.7.0.update03-16316930.x86_64-DellEMC_Customized-A06.zip"

#$tgtFolder = 'ISO'

$StartTime = Get-Date

 

 

Write-Host "************************************************" -ForegroundColor Cyan

Write-Host "Please wait while connecting the host: $HostName " -ForegroundColor Yellow

Write-Host "************************************************" -ForegroundColor Cyan

 

 

Connect-VIServer -Server $HostName -user $User -Password $Pswd

Write-Host "connected to the server: $HostName" -ForegroundColor Green

 

 

$datastores = Get-VMHost $HostName | Get-Datastore | where{$_.name -like "datastore*"}

 

 

    foreach($ds in $datastores){

   

    New-PSDrive -Location $ds -Name DS -PSProvider VimDatastore -Root "\" > $null

    Write-Host "New ISO folder has been created under DS: $ds " -ForegroundColor Green

     New-Item -Path DS:\ISO -ItemType Directory

    

     $tgtFolder ='ISO'

     New-PSDrive -Location $ds -Name DS1 -PSProvider VimDatastore -Root "\" > $null

  

    if(!(Test-Path -Path "DS1:/$($tgtFolder)")){

        New-Item -ItemType Directory -Path "DS1:/$($tgtFolder)" > $null

    }

    Write-Host "DS copy is in-progres.. Pls wait" -ForegroundColor Yellow

    Copy-DatastoreItem -Item $fileName -Destination "DS1:/$($tgtFolder)"

   

    Remove-PSDrive -Name DS -Confirm:$false

    Remove-PSDrive -Name DS1 -Confirm:$false

}

 

Write-Host " DS copy task has completed for host: $fileName" -ForegroundColor Green

 

$EndTime = Get-Date

$TotalTime = New-TimeSpan –Start $StartTime –End $EndTime #| select -expandproperty Seconds

Write-Host "************************************************" -ForegroundColor Cyan

Write-Host "Total time taken to complete the ISO copy: $TotalTime " -ForegroundColor Green

Write-Host "************************************************" -ForegroundColor Cyan

 

 

Regards,

Swamy Naveen

ESXi 6.7 System Swap "Host Cache" vs "Local swap" vs "Datastore".

$
0
0

Hi, I can't seem to find an article which explain the difference between them, when to use them, impact... or one of them is already deprecated.

The setting appear in the webclient, Host | Manage | System | Swap | Enabled, Datastore, Host Cache & Local Swap. Current at default setting, Yes, No, Yes, Yes)

Got a ESXi 6.7 lab PC (128GB RAM, 2x Nvme, 2 x Sata SSD & 1 x HDD) which I run nested ESXi hosts (like VSAN lab). just curious what those settings are, though I think with the configuration of mainly flash setup, the setting make no difference. The hard disk is hardly used.. just to backup iso files.

Thanks.

Herramientas de seguridad que deben acompañar a un centro de datos principal y alterno

$
0
0

Estoy pensando en adquirir un nuevo Data Center, y necesito sabes las Herramientas de seguridad que deben acompañar a un centro de datos principal y alterno, teniendo en cuenta lo siguiente:

  • Licenciamiento.
  • Requisitos mínimos para instalación y funcionamiento.
  • Breve descripción de funcionalidades
  • Alcances y limitaciones según infraestructura conveniente

Re: vmk(n) -- portgroup (OpaqueNetwork NDVS)

$
0
0
  1. For the fourth row, I need to alert the first column value (of fourth row). I have the following code; but it does not work. How can we make it working?
  2. For the fifth row, I need to alert the number of columns in the row. How can we do it?
  3. In the sixth row's second column, I have two buttons (input type="submit"). I need to alert the second button's text/value. (The second button has a class named "secondButton") How can we do it?

 

 

Following is the code::

$('#resultGridTable tr').each(function (i) { //"this" means row//Other operations in the row. Common for all rows
if(i==3) { //Specific Operation for fourth rowvar columnValue = $(this'td:nth-child(0)').val(); alert(columnValue); } });

Re: Old DRS and new DRS

ESXI 7.0u1 no disk present to install

$
0
0

Hi, please help me!

 

ESXI 7.0u1 no disk present to install flex system x240 (ibm blade system mt8721hc1)

Automate Datastore creation with grep, awk, or sed

$
0
0

I am updating my post kickstart to layout my ESX datastore.  This is for my lab environment where I wipe and drop often. I got all of my drives type and label in a simple array

 

PHYSICAL_DRIVES="SATA_SSD-SSD_VM Samsung-SSD_VSAN HITACHI-SSD_HDD"

 

What is the proper syntax or tool (grep, sed, or awk) to read in for example "SATA_SSD-SSD_VM" as $input and break it up into two variable where the market is "-"

So $type = would be "SATA" or all character from the start of $input up to the character "-"

 

and $label = would be "SSD_VM" or all the character after "-" to the end of the $input string

 

And feedback would be appreciated.  Thank you in advance

Re: Fusion and Citrix performance terrible (as in not even able to reboot VM)

$
0
0

Just wanted to mention, this issue is the same for me. "Accelerated 3D graphics" is simply not compatible with Citrix Workspace. I had it disabled a while back and the upgrade to Fusion 12 seems to have reenabled Accelerated 3D Graphics automatically for my Windows 10 VM and I lost again 2 hours fixing my unusabel Citrix Workspace and trying to remember what was the fix last time. Really annoying...

 

Fusion 12.0.0

macOS 10.15.7

Windows 10 Pro 19041

Re: ovftool v4.4 failing on extra config even when passing --allowExtraConfig

$
0
0

Moderator: Thread moved to the OVFtool area.

Citrix Viewer incompatible with "Accelerate 3D Graphics" option


Re: ESXI 7.0u1 no disk present to install

Re: Herramientas de seguridad que deben acompañar a un centro de datos principal y alterno

$
0
0

Moderador: El hilo se trasladó al área española.

Re: 82583V driver for ESXI 7.0 not work

$
0
0

[removed by moderator].

 

The HCL on VMWare's site definitely lists that the Intel 82583V driver is supported on previous versions which I have working, AND the 7.0 installation.  The issue is that it doesn't work.

 

[removed by moderator]

Re: Issue with In app Tunnel configuration

$
0
0

1) Is the VPN profile assigned to the application the App-Assignment? (The app should be visible in the tunnel client)

 

Yes its assigned to the web app

 

2) Is the default rule for Device Traffic Rules configured correctly in the WS1 Tunnel Configuration? (Action = Tunnel; For three destinations you should set BYPASS to prevent problems with some WorkspaceONE-Apps: *api.na1.region.data.vmwservices.com*,*discovery.awmdm.com*,*signing.awmdm.com*)

 

Not sure what you mean by this. My settings are at Tunnel. I added all the applications to be sure it works and then as for destination I entered the internal link we use to access our internal webapp. Is this correct?

 

3) Are the server traffic rules in the WS1 tunnel configuration correctly configured? (Should be "Bypass" for internal addresses and "Proxy" for external addresses)

 

Depends if the above is correct.

 

4) Which DNS servers are configured in the UAG settings? *

 

Our internal DNS Servers

 

5) Are you sure that the problem is not caused by the firewall?

 

It shouldn't be the case.

 

Really not sure why its not working here. Any help thrown this way would be greatly appreciated.

 

Re: Citrix Viewer incompatible with "Accelerate 3D Graphics" option

Viewing all 232394 articles
Browse latest View live


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