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

DEBUG messages in catalina.out

$
0
0

Hi,

 

after a few weeks we have a verly large /usr/local/tcserver/vfabric-tc-server-standard/um/logs/catalina.out File.

 

We can see a lot of DEBUG messages in it.

 

How can we configure that?


What is the specification of the free included utility server in a horizon air tenant?

$
0
0

The Horizon Air Service Description (As of the time of this writing on 05/09/2016) describes the following allowance on utility servers:

 

"Horizon Air VMs are intended for use with desktop and terminal services applications.   Special exemption is provided for customers who wish to use a VM instance as a utility server (s.a. domain controller, active directory server, DHCP relay or file server).  1 VM in the tenant may be used as a utility server without drawing from the desktop quota purchased.   Any additional utility servers will count towards the desktop quota purchased by subtracting the total CPU and Memory resources consumed for utility service as expressed in terms of whole number of desktops from the total VMs purchased.  "


By default, this free VM designated for usage as a utility server under the terms of use described is built with the Advanced Desktop specification.   As noted in the service description, you can adjust that specification by drawing from from the purchased desktop quota.to increase the size of this free VM, or to create additional utility servers.

Adding custom objects to vCenter Inventory

$
0
0


Hi,

I've tried this in the webClient Forum, but was told to submit the discussion here.

 

We have custom objects in our plugin (WebClient), similar to the Rack and Chassis samples which are a part of the vSphere WebClient sdk.

We need to allow an Administrator to  assign permissions to these objects.

To do this, we think it must be necessary to add our objects to the vCenter Inventory.

Is our assumption correct? Is it possible to do this? Are there any samples to show how this is done?

thanks for any info

Cathy

Need a powercli for bulk VM build

Caps Lock issue with 6 and 8 when using Language Specific Key Mappings

$
0
0

I'm running Windows 7 on VMWare Fusion 8 (OSX El Capitan)

When using Language Specific Key Mappings, caps lock + § (or !/) doesn't work, it gives §/! instead of 6/8.

Shift+§ or shift+! is Ok, it gives 6 or 8.

SRM vReplication 6.1 Network Ports

$
0
0

Hello,

I looked around for a new diagram for SRM/vReplication showing all the network ports required (an updated version of http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=1009562).

 

I could not find one so I created one based on the following docs:

(http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=2103394)

(http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=2087769)

 

I have a few questions and suggestions:

  1. In the KB articles, there is a reference to "vCenter proxy system".  Is this the same as the PSC?
    1. In not, then exactly what is this?
  2. In the KB articles, they refer to "replication appliance", "replication server", "replication server in the replication appliance", "replication management server".
    1. I assume from my reading and understanding
      1. "replication server" = "replication manager" = "VReplication Management Server (VRMS)" = Brains
      2. "replication appliance" = "VReplication Server (VRS)" = Work horse
    2. Can anyone confirm this is correct?  It will make a difference to this diagram.
  3. Suggestions to VMware technical doc writers
    1. Please be consistent with names of components.  It gets very confusing when there are multiple references to the same component using different terminology

 

Once I get confirmation the diagram is correct, I will post the final version on the blog along with the Visio complete with layers.

 

Thanks for the assistance.

B

duplicate LUN ID when using multiple arrays

$
0
0

I am setting up a new VMware farm in a large corporation, where both EMC and Netapp SANs are being used.

 

I asked a storage engineer to present a RDM LUN from the Netapp SAN. They gave this a  LUN ID of 0. Unfortunately, my boot LUN on the EMC also has a LUN ID of 0. This has resulted in two LUNs on separate arrays with an ID of 0. The targets do differ and the paths are all up.

 

I have never had duplicate LUN IDs like this before and wondered if this is an issue, and if it is commonly encountered in multiple array situations. Maybe I need to be more specific with the SAN engineers about which LUN ID they present at the time, is this something the SAN engineer chooses from their console?

 

Do I need to worry about this at all? I have screen dumped the two LUNs.

Jerky scrolling on Retina Macbook with Ubuntu 16.04 Guest

$
0
0

I'm trying VMWare for the first time, and finding scrolling in the latest version of Ubuntu very jerky. I'm running the VM with retina mode on, and the Ubuntu display manager is seeing a native res of 2880x1800. I have 1.5x scaling setup in the Unity env.

 

Everything looks good, but scrolling is just awful. I've checked that the openvm-tools-desktop is installed, and that the Mesa 3D acceleration is enabled.

 

I can also see on the host side that the discrete graphics card is enabled.


Local datastore slowly diminishing (ESXi 4.1)

$
0
0

Hello folks! Don't know what is going on with my datastore. In my inventory I created several virtual machines with thin provisioned hard disks. I thought that this was the reason why my storage started to slowly diminish. Then I made an inflate procedure on this thin disks because I was pretty sure that this action may help. Anyway it diminishes every day little be little. It's starts getting rather dangerous.

 

Can I stop it? How can I find the real reason of this issue?

 

Many thanks in advance!

help with bulk update script - vcloud Org

$
0
0

Hi All,

I need to update the following script to only modify all affected VMs in a single Org...I don't want this touching all environments...

 

ForEach ($vm in (Get-VM)){

$vmv = Get-VM $vm | Get-View

$name = $vmv.Name

$guestid = $vmv.Summary.Config.GuestId

$vmx = New-Object VMware.Vim.VirtualMachineConfigSpec

$vmx.extraConfig += New-Object VMware.Vim.OptionValue

$vmx.extraConfig[0].key = "monitor_control.enable_softResetClearTSC"

$vmx.extraConfig[0].value = "TRUE"

if ($guestid -like "windows8*Guest") {

($vmv).ReconfigVM_Task($vmx)

}

}

 

 

 

 

When I log into the specified Org via connect-ciserver -server xxxx  -Org MyOrg and test, it tells me:

 

Get-VM : 5/9/2016 3:40:00 PM    Get-VM        You are not currently connected

to any servers. Please connect first using a Connect cmdlet.

At C:\scripts\TSCClear.ps1:1 char:18

+ ForEach ($vm in (Get-VM)){

+                  ~~~~~~

    + CategoryInfo          : ResourceUnavailable: (:) [Get-VM], ViServerConne

   ctionException

    + FullyQualifiedErrorId : Core_BaseCmdlet_NotConnectedError,VMware.VimAuto

   mation.ViCore.Cmdlets.Commands.GetVM

 

Not a scripting guru here, just trying to see if I can make this work within one Org with a few modifications

Resuming Paused VM results in "The file specified is not a virtual disk"

$
0
0

Resuming Paused VM results in "The file specified is not a virtual disk".  I'm running workstation9 and my vm has been stuck this way since October 2015.  I tried a few things initially but have put the entire host on ice until now(I really need help salvaging this vm and data!!)

 

As stated, I believe the vm worked fine until October 2015.  Up until then, I had frequently paused and resumed the vm as a matter of practice.  One day I got this error and have not been able to get back into the vm since then.  I have been careful not to change the files through my vain troubleshooting attempts.

 

I've attached a complete list of the files in the vm's folder, along with the two log files contained in the folder

 

Any expertise/help/advice would be greatly appreciated

VDP 6.0 "Select Destination" in FLR is blank

$
0
0

Hi all,

 

Running Vsphere 5.5 U2, and VDP 6.0.

 

I am using a Server 2012 R2 VM to attempt a FLR (file level restore) and I get all the way to the point where I select a destination to restore the file to. When the window comes up the progress bar goes for a minute and then the window is blank. Any ideas?

 

Thanks,

 

Dan

Change datastore output to alphabetical

$
0
0

Hey all,

 

I have a report that outputs all our datastores and the % Free but the output is just all the datastores at random.  I would LOVE if it would output in alpha order.  Any ideas?

 

 

function UsedSpace

{

  param($ds)

  [math]::Round(($ds.CapacityMB - $ds.FreeSpaceMB)/1024,4)

}

 

 

function FreeSpace

{

  param($ds)

  [math]::Round($ds.FreeSpaceMB/1024,4)

}

 

 

function PercUsed

{

  param($ds)

  [math]::Round((100 * ($ds.CapacityMB - $ds.FreeSpaceMB) / $ds.CapacityMB),2)

}

 

 

$Datastores = Get-Datastore

$myCol = @()

ForEach ($Datastore in $Datastores)

{

  $myObj = "" | Select-Object Datastore, PercUsed

  $myObj.Datastore = $Datastore.Name

  $myObj.PercUsed = PercUsed $Datastore

  $myCol += $myObj

}

$myCol | Sort-Object PercFree | ConvertTo-Html –title "Datastore space " –body "<H2>Datastore space available.</H2>" -head "<link rel='stylesheet' href='style.css' type='text/css' />" | Out-File -Append $filelocation

Virtual Network Editor under Linux

$
0
0

I have successfully installed Vmware Player under Linux and the installation files for vmware-netcfg seem to be available (in /etc/vmware-install) but the Virtual Network Editor does not seem to have been installed.

 

Can anyone help me?  How do I get it working?

 

Many thanks,

Alan Searle

Cologne, Germany

Virtual Network Editor: Installing under Linux

$
0
0

Hallo Everyone,

 

I am current trying to set up a Bridged Network from a host PC (Lubuntu 16.10) to a linux (fedora) client and vmnet0 seems to be missing.

 

During my googling I have found that the VM-Ware tool "Virtual Network Editor" is recommended for fixing this problem.

 

Vmware say that it is available here: /usr/sbin/vmware-netcfg ... but on my installation it isn't there (although vmware-player installed fine and runs well).

 

However, the install files for vmware-netcfg seem to have found their way into the directory: /etc/vmware-installer.

 

So what I need to know is hope to get the Virtual Network Editor installed, open and running? Can I force an install? Or get it via Synaptic (although I couldn't seem to find it there)

 

Does anyone have any tips for me? Any information would be gratefully received.

 

Many thanks,

Alan Searle

Cologne, Germany

 

PS: And generally any tips or links to good HOWTOs on setting up Bridged Networking to a VMWare client would also be a great help.


VXLAN VLAN across racks?

$
0
0

I was reading the design guide for NSX and in there it was mentioned that the VXLAN VLAN ID on a vDS has to be the same across all racks in a given DC. VLAN ID for Mgmt, Storage and vMotion can differ; however the VXLAN VLAN ID has to be consistent. Can someone explain why that is?

 

Thanks!

Two Monitors Using CDE Within Workstation

$
0
0

VMware Experts:

 

My current environment uses a set of workstations that run HP-UX 10.20 to provide our GUI Applications. My boss has asked me to migrate our Applications to a more modern environment. His idea is to run this using VMs and Linux. Sooo, I currently have a Windows 7 PC that runs VMWare Workstation 10. Within VMWare, I

am running CentOS 7.2 and the Common Desktop Environment (CDE). For those of who who do not know, the CDE is an old Windowing system based on X. I have this architecture working, and the “PC” acts just like our current HP-UX workstations. My penultimate task is to get this architecture to work with two monitors.

 

I cannot seem to get two monitors to work completely with CDE. I have worked this issue for two weeks with no luck, so I am asking for your help. If I use Win7/VMWare10/CentOS7/Gnome, I have no problems. I do have VMWare Tools (not open-vm-tools) installed in the guest (CentOS 7.2) OS. The physical PC has only one graphics card installed, but the card can drive two monitors (like it does using Gnome). Within CentOS, I believe I have only one video device (/dev/fb0) available, so I have not made any changes to the X config file (/etc/X11/xorg.conf). I have made a lot of little changes in the last weeks to get this to work and, at one point, I had something close. In full-screen two-monitor mode within VMWare/CentOS 7, my first monitor had the “usual” look – I had a centered CDE FrontPanel with the expected backdrop and dtterm windows. The second monitor was totally black (i.e. no backdrop). From the first monitor, I was able to drag a dtterm window from

the first monitor to the second monitor. The left side of the dtterm window, however, would get “stuck” to the right side of the first monitor. I could reside this window in the second monitor, but I could not get the left side of the dtterm window to “unstick” from the right side of the first monitor. This implied  (to me, anyway) a problem with X, but I no longer think this is the case. It seems there is some interaction between VMware and CDE.


Are there any additional changes I need to make to VMware to get two monitors to work with CDE as a GUI? I am able to cycle between the monitors in full screen mode, but that has no effect.


Thanks for the help.


Regards,


Jeff Kolodziej

jeffrey.a.kolodziej@nasa.gov

VMware Performance Charts Service

$
0
0

I installed vcenter 6 on Windows Server 2012 R2. I launched vSphere Web Client and I see that VMware Performance Charts Service is critical.

 

In the stats.log file I have this error :

 

2015-08-14T10:25:21.940+02:00 [pool-1-thread-1  ERROR com.vmware.vim.stats.webui.util.ResourceModelClient] The provided SSO token is not delegable.

2015-08-14T10:25:41.709+02:00 [pool-1-thread-1  WARN  com.vmware.vim.stats.webui.startup.StatsReportInitializer] STATs report initialization failed. Set health status to RED.

2015-08-14T10:25:41.709+02:00 [pool-1-thread-1  INFO  com.vmware.vim.stats.webui.health.HealthStatusCollector] set HealthStatus to: RED messageKey: health.statsReoptInitalizer.illegalStateEx

2015-08-14T10:25:41.709+02:00 [Thread-2  ERROR com.vmware.vim.common.lifecycle.InitializerExecutor] Initialization error; attempt 14 will begin in 60 seconds...

java.util.concurrent.ExecutionException: java.lang.IllegalStateException: com.vmware.vim.stats.webui.SessionException: com.vmware.vim.sso.client.exception.InvalidTokenRequestException: Request is invalid: ns0:InvalidRequest: Access not authorized!

    at java.util.concurrent.FutureTask.report(FutureTask.java:122)

    at java.util.concurrent.FutureTask.get(FutureTask.java:188)

    at com.vmware.vim.common.lifecycle.InitializerExecutor$MonitorCallback.run(Unknown Source)

    at java.lang.Thread.run(Thread.java:745)

Caused by: java.lang.IllegalStateException: com.vmware.vim.stats.webui.SessionException: com.vmware.vim.sso.client.exception.InvalidTokenRequestException: Request is invalid: ns0:InvalidRequest: Access not authorized!

    at com.vmware.vim.common.lifecycle.InitializerExecutor$MonitorCallback$1.run(Unknown Source)

    at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)

    at java.util.concurrent.FutureTask.run(FutureTask.java:262)

    at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:178)

    at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:292)

    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)

    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)

    ... 1 more

 

There is a problem with SSO token, but how to fix that?

 

 

Kind regards,

D.

Unable to configure vROPS on AV 3.0

$
0
0

Unable to configure vrops on av 3.0 -

 

  • fresh install
  • logged into console and ran /etc/wemi/utils/disable_ssl_validation.sh
  • rebooted
  • configured AD bind and roles and permissions step
  • input FQDN for vrops appliance, AD username with admin permissions and password

 

Get this error: Internal Server Error. Server encountered internal error and was unable to complete your request. Please try again later. If this issue persists contact your service provider.

 

Nothing relevant is indicated in the logs. Anyone else run into this problem?

Copy a package and/or include a package within a package

$
0
0

I don't believe it is possible to copy a package or include other packages in a package.  If there is an easy way to do either I'd love to know.

Viewing all 180259 articles
Browse latest View live


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