Quantcast
Channel: VMware Communities : Discussion List - All Communities
Viewing all 178257 articles
Browse latest View live

How to create vCACCAFEElementState instance

$
0
0

Hi,

 

I'm trying to change Blueprint from vRO workflow, I am able to change some part of the blueprint, such as description, size of input box size, etc.

When I am trying to hide a input, which set the VisibilityConstraint to true. Since JavaScript it pass by value. I have to create new vCACCAFEElementState with updated facets, then assign it to field.

 

field.initialStaticState = new vCACCAFEElementState(facets, initialStaticState.getDependencies());

 

Then I got the following error.

[2016-09-08 21:33:15.487] [E] Unable to create object : vCACCAFEElementState : Class ch.dunes.vso.sdk.DynamicWrapper can not access a member of class com.vmware.vcac.platform.content.facets.ElementState with modifiers "protected"

 

Anyone had experience with this?

 

Thanks


Hypervisor 6.0.0 bld 3620759 no option to convert VMFS3 to VMFS5

$
0
0

First let me state that I absolutely, positively, and undeniably hate the web client. That would be okay if I could do everything in the vSphere Client but no, can't do that. New features apparently get added to the terrible Web Client. Ugh.

 

Here's the actually issue I'm having. I added a new SATA drive from and older ESXi (free) server which is a VMFS3 file system. According to the 6.0.0 docs, I should be able to use the awful Web Client, right click on the Datastore (It has no "Global Inventory LIsts", and viola! The option to upgrade is supposed to be one of the choices. Um, no. It's not. Doesn't matter if the server is in Maintenance mode or not, or if the VMFS3 datastore is mounted or unmounted, in Maintenance mode or not. The only options listed are: Rename, Increase Capacity, Unmount, Browse and Register a VM.

 

There are no KB articles within the last few years for VMFS3. The 6.0.0 ESXi documentation about Upgrading a VMFS3 Datastore to VMFS5 is flat out wrong, at least for my free "Hypervisor".

 

No "Upgrade" in sight. So what hoops do I now have to jump through to upgrade that VMFS3 datastore?

 

Oh, and wait. It's 2016 and there's still no sound support? Yes, I'm using a consumer MB with a RealTek auto chip but hey, c'mon. There should be at least basic, support for beeps from the VMs or something. It's an X99 system with a Broadwell-E processor.

 

Sorry, just need to get a few things off my chest. LOL.

 

Thanks,

Mark

Using bundle-classpath while debugging in eclipse

$
0
0

I have added some 3rd party jars to my project using the bundle-classpath method and it works great. My question is how do I get these jars to load while debugging in eclipse? If I open my manifest.mf file in eclipse and navigate to the runtime tab, I do see the jars added under classpath. But when I launch virgo server and add my project, it says it cannot find classes within my dependencies.

 

How do I get around this?

Edge hijacking pdf file type association in Windows 10

$
0
0

Hi, I set file type associations successfully in UEM for mp4 and wmv to open with VLC, but with pdf, the setting will not change.  I'm able to use the control panel "default applications" menu to make PDFs open with Adobe Reader XI, but that setting won't persist.

 

I tried putting in this key as a partially enforced predefined setting for registry keys in Windows 10 but that didn't work.  I tried baking it into the default user's ntuser.dat on the image and that didn't help either:

[HKEY_CURRENT_USER\SOFTWARE\Classes\AppXd4nrz8ff68srnhf9t5a8sbjyar1cr723]

"NoOpenWith"=""

 

Has anyone here seen this problem?

Can't find password for user for backing up vCenter Server Appliance vPostgres database

$
0
0

We're running version 6 of vCenter Server Appliance, and I am trying to make a manual backup of our vPostgres db. However, following the instructions here (Backing up and restoring the vCenter Server Appliance 5.x vPostgres database (2034505) | VMware KB), I do not see an entry for "EMD_DB_PASSWORD" in /etc/vmware-vpx/embedded_db.cfg. I am asked for the password when I execute the command  ./pg_dump VCDB -U vc -Fp -c > /tmp/VCDBackUp but do not have that password.

 

I know that I'm running version 6 but the instructions are for 5.X. Do the steps vary that much? Can anyone make any suggestions?

Unable to connect to the MKS

$
0
0

hi All,

I more often see the below message and i know i can fix by moving them to  a different host by vmotion. But i want to proactively know which all VM has got this problem so taht i can write a script to vmotion them automatically.

 

Capture.PNG

Workstation 10 and SSD awareness?

$
0
0

When I reverted a VM to snapshot just now, I got this message:

Message.png

Seeing as the VMDK sits on an Intel X25-M SSD, I'm not sure what to make of it - defragmenting as the message suggests would probably hurt more than it would help.

Creating a report on AVG and MAX CPU, RAM, Network Usage, Disk Usage

$
0
0

Hello all,  I have been looking over the other posts on creating reports.  I am not sure that I am finding what I am looking for.

What would I would like to create is something similar to this code:

 

Get-VM -Name vmname | Select Name, Host, NumCpu, MemoryMB, `

@{N="CPU Usage (Average), Mhz" ; E={[Math]::Round((($_ | Get-Stat -Stat cpu.usagemhz.average -Start (Get-Date).AddDays(-30) -IntervalMins 5 | Measure-Object Value -Average).Average),2)}}, `

@{N="Memory Usage (Average), %" ; E={[Math]::Round((($_ | Get-Stat -Stat mem.usage.average -Start (Get-Date).AddDays(-30) -IntervalMins 5 | Measure-Object Value -Average).Average),2)}} , `

@{N="Network Usage (Average), KBps" ; E={[Math]::Round((($_ | Get-Stat -Stat net.usage.average -Start (Get-Date).AddDays(-30) -IntervalMins 5 | Measure-Object Value -Average).Average),2)}} , `

@{N="Disk Usage (Average), KBps" ; E={[Math]::Round((($_ | Get-Stat -Stat disk.usage.average -Start (Get-Date).AddDays(-30) -IntervalMins 5 | Measure-Object Value -Average).Average),2)}} |`

Export-Csv -Path c:\8aug16\AverageUsage_lastday.csv

From site: http://vstrong.info/2014/11/18/powercli-average-cpu-memory-network-and-disk-usage/

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

This will generate one line per VM for the last month.  I tried to add columns for last day, last week, last month, but I would get errors if I just tried to double the script and change the column heading. 

Example:

        

NameHostNumCpuMemoryMBCPU Usage (Average), MhzMemory Usage (Average), %Network Usage (Average), KBpsDisk Usage (Average), KBps
vmnamen/a48192429.3711.580.2996.58

 

 



My attempt was to try this:

Get-VM -Name vmname | Select Name, Host, NumCpu, MemoryMB, `

@{N="CPU Usage (Last Day Average), Mhz" ; E={[Math]::Round((($_ | Get-Stat -Stat cpu.usagemhz.average -Start (Get-Date).AddDays(-1) -IntervalMins 5 | Measure-Object Value -Average).Average),2)}}, `

@{N="Memory Usage (Last Day Average), %" ; E={[Math]::Round((($_ | Get-Stat -Stat mem.usage.average -Start (Get-Date).AddDays(-1) -IntervalMins 5 | Measure-Object Value -Average).Average),2)}} , `

@{N="Network Usage (Last Day Average), KBps" ; E={[Math]::Round((($_ | Get-Stat -Stat net.usage.average -Start (Get-Date).AddDays(-1) -IntervalMins 5 | Measure-Object Value -Average).Average),2)}} , `

@{N="Disk Usage (Last Day Average), KBps" ; E={[Math]::Round((($_ | Get-Stat -Stat disk.usage.average -Start (Get-Date).AddDays(-1) -IntervalMins 5 | Measure-Object Value -Average).Average),2)}} |`

@{N="CPU Usage (Last Day Average), Mhz" ; E={[Math]::Round((($_ | Get-Stat -Stat cpu.usagemhz.average -Start (Get-Date).AddDays(-7) -IntervalMins 5 | Measure-Object Value -Average).Average),2)}}, `

@{N="Memory Usage (Last Week Average), %" ; E={[Math]::Round((($_ | Get-Stat -Stat mem.usage.average -Start (Get-Date).AddDays(-7) -IntervalMins 5 | Measure-Object Value -Average).Average),2)}} , `

@{N="Network Usage (Last Week Average), KBps" ; E={[Math]::Round((($_ | Get-Stat -Stat net.usage.average -Start (Get-Date).AddDays(-7) -IntervalMins 5 | Measure-Object Value -Average).Average),2)}} , `

@{N="Disk Usage (Last Week Average), KBps" ; E={[Math]::Round((($_ | Get-Stat -Stat disk.usage.average -Start (Get-Date).AddDays(-7) -IntervalMins 5 | Measure-Object Value -Average).Average),2)}} |`

@{N="CPU Usage (Average), Mhz" ; E={[Math]::Round((($_ | Get-Stat -Stat cpu.usagemhz.average -Start (Get-Date).AddDays(-30) -IntervalMins 5 | Measure-Object Value -Average).Average),2)}}, `

@{N="Memory Usage (Average), %" ; E={[Math]::Round((($_ | Get-Stat -Stat mem.usage.average -Start (Get-Date).AddDays(-30) -IntervalMins 5 | Measure-Object Value -Average).Average),2)}} , `

@{N="Network Usage (Average), KBps" ; E={[Math]::Round((($_ | Get-Stat -Stat net.usage.average -Start (Get-Date).AddDays(-30) -IntervalMins 5 | Measure-Object Value -Average).Average),2)}} , `

@{N="Disk Usage (Average), KBps" ; E={[Math]::Round((($_ | Get-Stat -Stat disk.usage.average -Start (Get-Date).AddDays(-30) -IntervalMins 5 | Measure-Object Value -Average).Average),2)}} |`

Export-Csv -Path c:\8aug16\AverageUsage.csv

 

This is the error message:

At line:6 char:1

+ @{N="CPU Usage (Last Day Average), Mhz" ; E={[Math]::Round((($_ | Get-Stat -Stat ...

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

Expressions are only allowed as the first element of a pipeline.

At line:10 char:1

+ @{N="CPU Usage (Average), Mhz" ; E={[Math]::Round((($_ | Get-Stat -Stat cpu.usag ...

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

Expressions are only allowed as the first element of a pipeline.

    + CategoryInfo          : ParserError: (:) [], ParentContainsErrorRecordException

    + FullyQualifiedErrorId : ExpressionsMustBeFirstInPipeline

 

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

Thank you in advance for your assistance.


why esxi server has been crashed

$
0
0

dear all

 

Hi

 

i have installed esxi 5.5 build = 2718055 today after 6 monyhs my esxi server not response and can not ping and gray in my vcenter after that i have connected to ILO and just see attach pic and any of key on keyboard not work (F2 or F12) that seems crash then restart my server from ILO and problemhas been solved now how can i see why my sever has been crashed and what is my problem?

 

 

BR

vcenter vm lable Vs dns name

$
0
0

While doing server inventory i found that a vm has vcenter lable & dns name mis-match. ideally they should be same to avoid confion.

 

Can with powercli we can find such mis-matched records

thanks

Moving a VM to different vCenter

$
0
0

Hi all!

 

We are currently running on vSphere 5 with datastores coming via FC from a NetApp controller. One of the VMs is for MS Exchange with RDMs attached as FC LUNs.

We are planning to do a refresh of the Bladecenter with new servers and a new vCenter, all with vSphere 6.

We plan to keep the NetApp and connect it to the new Bladecenter, for sure we will have to re-register all VMs.

I see no problem with that, but what about the RDMs of the Exchange VM, will they be available also?

NetApp configuration and LUNs stay untouched, it will just be connected to a new Bladecenter.

 

thanx and greetings,

Stephan

Horizon view and Clouding

$
0
0

Dear all

 

Hi

 

i want to know horizon view and RDS are put in cloud family technology ? if yes please say what kind of cloud technology Saas or ... ?

 

BR

vRA Recent Events of one tenant admin from another tenant admin of same tenant

$
0
0

Is it possible to check vRA Recent Events of one tenant admin from another tenant admin of same tenant. Lets assume we have multiple tenant admins for the same tenant. Or is it possible to check all the users recent events at one place in vmware vra.

Command or Power CLI to list all services, status and account for start/stop service on ESXi

$
0
0

Hello,

This is my first post on community.

Please kindly to help I try to search command or power CLI to list all services, status and accounts for start/stop service on ESXi.

Because I'll change any services that use root account to start/stop by create new account and permission only start/stop services.

I try to search found only list services but not include accounts for start/stop services.

Please kindly advice, Thank you.

Подключение жесткого диска к виртуальной машине

$
0
0

Всем добрый день!

Прошу помощи.

На борту VMware ESXi 6.0 версия free

Хочу скидывать с виртуальной машины бэкапы, для этого получается мне необходимо подключить диск к виртуальной машине.

Вопрос состоит в том что можно ли напрямую подключить диск к ВМ выбрав его из Datastore. Или так нельзя необходимо создать сначала диск в формате vmdk, а после этого только подключать диск к ВМ?


Unexpected error when copying files between guest and host using shared folders WS12

$
0
0

Hi guys,

 

I'm using the Shared Folders feature to copy files from the guest virtual machine and the host machine.  I'm using WS12 Pro and sometimes, i can copy big file (>2Gb) but sometimes it'showing error below :

 

   An unexpected error is keeping you from copying the file.  If you continue to receive this error, you can use the error code to search for help with this problem.  Error 0x800703E3: The I/O operation has been aborted because of either a thread exit or an application request.

 

Could you help please?

 

Thanks,

Dre

VMware Tools issues in CentOS 7

$
0
0

See attached, what can I do?

 

I tried remove open-vm-tools and install it again without any difference.

 

I'm using Workstation 12.1.1 and open-vm-tools 9.10.2-5.el7_2.x86_64

Using NSX Distrubuted Routers vs Edge Routers

$
0
0

It looks like vCloud 8.10 only creates Edge services gateways (ESGs) when setting up routed Org VDC Networks.

 

We would strongly prefer to use the DLR's vs the ESG as its much faster in our environment as most of traffic is east-west.

 

Does anyone know if this is possible or is it on the roadmap?

vSGA poor performance or misconfigured

$
0
0

Hi

 

On a Dell VRTX with a AMD W7000 GPU installed, we use a Dell M630 server for vSphere 6.0 u2 and Horizon View 7.0.1.

 

We created two pools.

Pool A:

  • with 3D Renderer: Hardware.

 

Pool B:

  • with 3D Renderer: disabled

 

We used HTML5 fish bowl to test both pools.


Desktops on pool B have better fps that desktops on pool A.

 

Both pools shows VMware SVGA 3D as display adapters:

Selección_036.png

 

GPU seems installed correctly

 

Selección_046.png

 

"vSGA" and "SVGA 3D" use VMware tools drivers. Must I expect to see vSGA on "Windows Device Manager"?

 

We want to use a shared vSGA configuration. No vDGA are needed.

 

Best regards,

Vmotion Error with one one server

$
0
0

We have 4 servers running in a cluster and we can use vmotion to move VMs except for one server. All esxi servers are running 6.0.0-3825889. We also have another machine running vcenter server 6.0.0-3634788 on windows. Everything is dual stack ipv4 and ipv6. When we try to move a vm to or from one of the servers I am getting the following error.

 

Network addresses 'XXX.XXX.98.196' and 'XXXX::98:197' are from different address families.

Unable to prepare migration.

 

Can anyone help?

Viewing all 178257 articles
Browse latest View live


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