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

Docker Hub OFFICIAL の VMware Photon リポジトリが公開されました。

$
0
0

VMware Photon OS の、Docker Hub オフィシャルリポジトリが公開されました。

Docker コンテナイメージが「docker pull photon」でダウンロードできます。

 

Three New Official Repos Join the Docker Library

http://blog.docker.com/2016/01/three-new-official-repos-join-the-docker-library/http://blog.docker.com/2016/01/three-new-official-repos-join-the-docker-library/

 

Docker Hub の photon リポジトリ。

https://hub.docker.com/r/library/photon/https://hub.docker.com/r/library/photon/

 

リポジトリの Tag を見ると、現時点(2016/01)でインストーラの ISO イメージが公開されている

Photon OS 1.0 TP2 と、それよりも新しい 1.0 RC が公開されています。

この時点の latest Tag は 1.0RC のイメージに割り当てられています。

Image.png

 

ということで、Docker Hub オフィシャルのイメージからコンテナを起動してみます。

 

オフィシャル photon イメージからコンテナ起動。

 

Docker ホストは、Photon OS 1.0 TP2 を使用しています。

root [ ~ ]# cat /etc/photon-release

VMware Photon Linux 1.0 TP2

 

今回の Docker ホストは、photon21 というホスト名にしています。

root [ ~ ]# uname -n

photon21

 

Docker Hub のオフィシャルの photon はこれです。

NAME に「/」がなく、OFFICIAL が [OK] になっています。

root [ ~ ]# docker search photon | grep -v /

NAME                                 DESCRIPTION                                     STARS     OFFICIAL   AUTOMATED

photon                               Photon OS is a technology preview of a min...   5         [OK]

 

イメージをダウンロード(pull)してみます。

タグなしで「photon」と指定しているので、「photon:latest」がダウンロードされます。

root [ ~ ]# docker pull photon

Using default tag: latest

latest: Pulling from library/photon

2b04b19ccb4f: Pull complete

a7d41096d06c: Pull complete

b12b5ead0dad: Pull complete

library/photon:latest: The image you are pulling has been verified. Important: image verification is a tech preview feature and should not be relied on to provide security.

Digest: sha256:b2848958bab911122e8469411184ab683d8105859497ecb33bb9f3760ace6ce0

Status: Downloaded newer image for photon:latest

 

ダウンロードされました。

root [ ~ ]# docker images photon

REPOSITORY          TAG                 IMAGE ID            CREATED             VIRTUAL SIZE

photon              latest              b12b5ead0dad        2 weeks ago         119.1 MB

 

コンテナを起動してみます。

起動と同時にコンテナの中に入っていることが、プロンプトとホスト名からわかります。

root [ ~ ]# docker run -it photon

root [ / ]# uname -n  ★ここからコンテナの中。

4ee5f47acd72

 

latest から起動したコンテナの Photon OS のバージョンは 1.0 RC になっています。

root [ / ]# cat /etc/photon-release

VMware Photon Linux 1.0-RC

PHOTON_BUILD_NUMBER=09637bc

 

Photon OS では、yum のかわりに tdnf という yum 互換コマンドで RPM パッケージを管理します。

コンテナイメージに登録済みのリポジトリを見てみます。

root [ / ]# tdnf repolist

repo id             repo name                               status

photon              VMware Photon Linux 1.0(x86_64)         enabled

photon-updates      VMware Photon Linux 1.0(x86_64)Updates  enabled

lightwave           VMware Lightwave 1.0(x86_64)            enabled

 

tdnf は、yum と同様のリポジトリ参照設定をします。

今回のコンテナでは、このように設定されていました。

tdnf / yum コマンドを実行しなくても、baseurl に設定されている URL に Web ブラウザなどで

アクセスすると、実際にどのような RPM が用意されているのか確認できます。

root [ / ]# ls /etc/yum.repos.d/

lightwave.repo  photon-iso.repo  photon-updates.repo  photon.repo

root [ / ]# cat /etc/yum.repos.d/photon.repo

[photon]

name=VMware Photon Linux 1.0(x86_64)

baseurl=https://dl.bintray.com/vmware/photon_release_1.0_RC_x86_64

gpgkey=file:///etc/pki/rpm-gpg/VMWARE-RPM-GPG-KEY

gpgcheck=1

enabled=1

skip_if_unavailable=True

root [ / ]# cat /etc/yum.repos.d/photon-updates.repo

[photon-updates]

name=VMware Photon Linux 1.0(x86_64)Updates

baseurl=https://dl.bintray.com/vmware/photon_updates_1.0_RC_x86_64

gpgkey=file:///etc/pki/rpm-gpg/VMWARE-RPM-GPG-KEY

gpgcheck=1

enabled=1

skip_if_unavailable=True

root [ / ]# cat /etc/yum.repos.d/lightwave.repo

[lightwave]

name=VMware Lightwave 1.0(x86_64)

baseurl=https://dl.bintray.com/vmware/lightwave

gpgkey=file:///etc/pki/rpm-gpg/VMWARE-RPM-GPG-KEY

gpgcheck=1

enabled=1

skip_if_unavailable=True

root [ / ]# cat /etc/yum.repos.d/photon-iso.repo

[photon-iso]

name=VMWare Photon Linux 1.0(x86_64)

baseurl=file:///mnt/cdrom/RPMS

gpgkey=file:///etc/pki/rpm-gpg/VMWARE-RPM-GPG-KEY

gpgcheck=1

enabled=0

skip_if_unavailable=True

 

ちなみに、このコンテナイメージには、yum は入っていません。

ただし、photon のリポジトリには配置されているので追加インストールすることは可能です。

root [ / ]# yum

bash: yum: command not found

root [ / ]# tdnf list yum

yum.noarch                                  3.4.3-2.ph1rc             photon

 

オフィシャル photon イメージのカスタマイズ。

 

photon では標準で tdnf を使用するようになっているので、

コンテナイメージをカスタマイズするときは、

これまで yum を使用していた手順では、かわりに tdnf コマンドを使用します。

たとえば、docker build ~ するときは、下記のような感じになります。

 

まず、例として httpd をインストールして起動するだけの超簡易的な Dockerfile を作成してみました。

 

Dockerfile の内容

FROM photon

MAINTAINER gowatana

 

RUN tdnf install -y httpd

ENTRYPOINT /usr/sbin/httpd -D FOREGROUND

 

イメージを build してみます。

root [ ~ ]# docker build -t photon-web:1.0 .

Sending build context to Docker daemon 10.75 kB

Step 0 : FROM photon

---> b12b5ead0dad

Step 1 : MAINTAINER gowatana

---> Running in 750719e6d0e2

---> e945a2934d58

Removing intermediate container 750719e6d0e2

Step 2 : RUN tdnf install -y httpd

---> Running in 989cd40787da

 

Installing:

Linux-PAM                       x86_64      1.1.8-2.ph1rc       1011.17 k

krb5                            x86_64      1.12.2-1.ph1rc        3.51 M

e2fsprogs                       x86_64      1.42.9-4.ph1rc        2.67 M

cyrus-sasl                      x86_64      2.1.26-4.ph1rc      548.33 k

apr                             x86_64      1.5.2-5.ph1rc       519.52 k

apr-util                        x86_64      1.5.4-5.ph1rc       394.36 k

openldap                        x86_64      2.4.40-2.ph1rc        1.51 M

httpd                           x86_64      2.4.12-4.ph1rc       12.19 M

 

Total installed size: 22.30 M

 

Downloading:

httpd                                  4692452    100%

openldap                                865721    100%

apr-util                                156350    100%

apr                                     181582    100%

cyrus-sasl                              276100    100%

e2fsprogs                              1051512    100%

krb5                                   1406668    100%

/var/tmp/rpm-tmp.gShFPX: line 3: groupadd: command not found

/var/tmp/rpm-tmp.gShFPX: line 6: useradd: command not found

 

Testing transaction

Running transaction

 

Complete!

---> 9b51afe2abb4

Removing intermediate container 989cd40787da

Step 3 : ENTRYPOINT /usr/sbin/httpd -D FOREGROUND

---> Running in fac2999916a5

---> ccfd44e6ff70

Removing intermediate container fac2999916a5

Successfully built ccfd44e6ff70

 

「photon-web:1.0」が build されました。

root [ ~ ]# docker images

REPOSITORY          TAG                 IMAGE ID            CREATED              VIRTUAL SIZE

photon-web          1.0                 ccfd44e6ff70        About a minute ago   147.6 MB

photon              latest              b12b5ead0dad        2 weeks ago          119.1 MB

 

コンテナを起動して curl でアクセスすると、ちゃんと httpd でおなじみの「It works!」ページが返されています。

root [ ~ ]# docker run -d -p 8001:80 photon-web:1.0

a38e5be9e9d27a932d86b08781833a67592e4d36dcc00f9a88179426773fc86f

root [ ~ ]# curl http://localhost:8001/

<html><body><h1>It works!</h1></body></html>

 

ただ、Photon OS はコンテナ用の軽量 OS のため、デフォルトで設定されている photon の tdnf のリポジトリには

あまり RPM が配置されていません。

このイメージは、特定の用途(Lightwave とか)で使用するか、もしくは

カスタマイズするためにいくらか tdnf(yum)のリポジトリを追加する必要がありそうです。

 

以上、Docker Hub オフィシャルの photon イメージについてでした。


Error when trying to download VCSA 5.5 u3 client integration bundle

Workstation Pro 12 Networking Issues in Win7 Guest

$
0
0

I recently upgraded from RHEL 6.7 to RHEL 7.2 and also upgraded from vmware Workstation 10 to vmware Workstation 12 Pro.  Since the upgrade my Win7 guest has continually been having issues connecting to the network.

With chrome, I constantly get ERR_CONNECTION_RESET messages on almost every web page.  Reloading several times will eventually allow the page to load.    On FireFox, it shows as "The connection was reset".

I am running the network adapter in bridged mode.  Have tried NAT but I don't always get connected to the network in NAT mode.

 

I have gone through the KB article which called for uninstalling/reinstalling vmware tools, removing/adding back the network adapter, etc.  Still no luck.

 

Any suggestions for debug, or has anyone else had a similar issue and found a resolution?

 

Thanks for the help.

is there any body from IRAN that get vmware certificate

$
0
0

Hi

 

i live in iran now i want to know how can i get some vmware certificates such as vmware-vcp5-DCv or vcp6-dcv or other license

 

Best regards

Future of Fusion after team layoff?

Why has my Fusion all of sudden become painfully slow?

$
0
0

Hi all,

Help me out here: I am running fusion 7 and windows 7 64-bit and windows 10 (not at the same time) on a quad-core MBP with 16 gb ram - Yosemite.

All of a sudden, windows has start halting all the time - not crashing - but working in the background, flywheeling - especially when browsing folders but also when printing, saving etc. It is not all the time. At times it works ok - but then slows down to the extent of becoming impossible to use.

 

This has never been so before. What can cause this?

 

Morten

Best way to copy Fusion VM to a Windows Workstation VM?

$
0
0

Can anyone tell me the best way (any way) to copy a Fusion VM to a Windows Workstation VM.

 

Thanks ...

After virtualization very slow performance

$
0
0

Hello, I virtualiazed using vmware converter old computer pentium 4 1.7ghz 2gm ram, 120gb hdd.

This resulted in 100gb image file that I run on vmware workstation 5.5 on another pentium 4 3.4ghz 4gb ram, 200gb hdd computer.

 

However the virtual computer is unusable, the hard drive is constantly working. I applied the custom optimizations in the vmx file like disable unity mode.

This made huge difference, however it is still very slow and reads hdd way more than it should.

 

What am I missing?


Single vCenter Server 5 Essentials license - need 5.5 and 6.0 support

$
0
0

I have one vCenter Server 5 Essentials license with 2 ESXi hosts.   One of my hosts cannot be upgraded past 5.0.

 

If I upgrade my license to 6.0, can I still have 5.0 running on my old host?

Any way to reset the VAMI Administrator password, on vCenter Server Appliance 6.0?

$
0
0

I am running the vCenter Server Appliance (v. 6.0.0 Build 2997665) as a VM and it’s working but I’m not able to log into the VAMI UI on port 5480. Using the same Administrator credentials that I use to log into the VCSA UI (I thought they were the same).

 

Is there a way to reset the VAMI Administrator password, through the VCSA interface (or even through ssh to the vCenter Appliance)?

ESXi not see all path to SAS storage

$
0
0

Hi,

 

  I have problem with new instalation ESXi 5.5 - new server IBM HS23, Blade Center S

After installation ESXi see only single path to storage.

command esxcli storage core path list wrote:

 

sas.500507604d26739c-sas.500507604e3e0d60-

   UID: sas.500507604d26739c-sas.500507604e3e0d60-

   Runtime Name: vmhba0:C0:T1:L0

   Device: No associated device

   Device Display Name: No associated device

   Adapter: vmhba0

   Channel: 0

   Target: 1

   LUN: 0

   Plugin: NMP

   State: active

   Transport: sas

   Adapter Identifier: sas.500507604d26739c

   Target Identifier: sas.500507604e3e0d60

   Adapter Transport Details: 500507604d26739c

   Target Transport Details: 500507604e3e0d60

   Maximum IO Size: 4194304

 

sas.500507604d26739c-sas.500507604e3e0d60-

   UID: sas.500507604d26739c-sas.500507604e3e0d60-

   Runtime Name: vmhba0:C0:T1:L1

   Device: No associated device

   Device Display Name: No associated device

   Adapter: vmhba0

   Channel: 0

   Target: 1

   LUN: 1

   Plugin: NMP

   State: active

   Transport: sas

   Adapter Identifier: sas.500507604d26739c

   Target Identifier: sas.500507604e3e0d60

   Adapter Transport Details: 500507604d26739c

   Target Transport Details: 500507604e3e0d60

   Maximum IO Size: 4194304

 

sas.500507604d26739c-sas.500507604e36ce20-naa.600507604e36ce7f569fd76600000007

   UID: sas.500507604d26739c-sas.500507604e36ce20-naa.600507604e36ce7f569fd76600000007

   Runtime Name: vmhba0:C0:T0:L0

   Device: naa.600507604e36ce7f569fd76600000007

   Device Display Name: IBM Serial Attached SCSI Disk (naa.600507604e36ce7f569fd76600000017)

   Adapter: vmhba0

   Channel: 0

   Target: 0

   LUN: 0

   Plugin: NMP

   State: active

   Transport: sas

   Adapter Identifier: sas.500507604d26739c

   Target Identifier: sas.500507604e36ce20

   Adapter Transport Details: 500507604d26739c

   Target Transport Details: 500507604e36ce20

   Maximum IO Size: 4194304

 

sas.500507604d26739c-sas.500507604e36ce20-naa.600507604e36ce7f569fd8eb00000008

   UID: sas.500507604d26739c-sas.500507604e36ce20-naa.600507604e36ce7f569fd8eb00000008

   Runtime Name: vmhba0:C0:T0:L1

   Device: naa.600507604e36ce7f569fd8eb00000008

   Device Display Name: IBM Serial Attached SCSI Disk (naa.600507604e36ce7f569fd8eb00000018)

   Adapter: vmhba0

   Channel: 0

   Target: 0

   LUN: 1

   Plugin: NMP

   State: active

   Transport: sas

   Adapter Identifier: sas.500507604d26739c

   Target Identifier: sas.500507604e36ce20

   Adapter Transport Details: 500507604d26739c

   Target Transport Details: 500507604e36ce20

  

 

device driver is: mpt2sas - Version: Version 19.00.00.00.1vmw, Build: 1331820, Interface: 9.2 Built on: Mar 18 2014

I tried mpt2sas version 20..., but not success

 

Any idea?

Thanks in advance.

vRealize Automation 7 - Where are the OOTB blueprints?

$
0
0

Documentation sais there are some OOTB blueprints to demo the new unified blueprint designer. Those should inclue, besides others, a "Micro Services App" that mimics a e-commerce app (Duke's Bank replacement).

Those blueprints SHOULD be bundled with the vRA 7 release but I was yet unable to find them. Using the CLoud Client 4.0 command "vra content list" I'm only able to see the blueprints created by myself.

 

This is true for the default tenant as well for newly created tenents.

 

Does anyone know where to find those example blueprints or if they didn't make it to the GA?

 

 

 

 

P.S.: Besides this other features that have been announced or documented seem to be missing as well. E.g. the new "role matrix".

Sync Device

$
0
0

Hi all,

I used to believe that Sync Device was forcing a snapshot for a CVD.

In my lab if I Sync device it connects to the endpoint and initiate an upload, but from mmc console I do not see the snapshot, therefore I cannot restore to that point. Is there any way to force a snapshot creation from mmc ?

But if I go the endpoint and log in locally, opening the mirage restore I can see the archive from that time and restore files, it seems that the mmc console do not see last snapshot, any clues what is going on here ?

 

Thank you.

Sync Device 5.6

$
0
0

Hi all,

I used to believe that Sync Device was forcing a snapshot for a CVD.

In my lab if I Sync device it connects to the endpoint and initiate an upload, but from mmc console I do not see the snapshot, therefore I cannot restore to that point. Is there any way to force a snapshot creation from mmc ?

But if I go the endpoint and log in locally, opening the mirage restore I can see the archive from that time and restore files, it seems that the mmc console do not see last snapshot, any clues what is going on here ?

 

Thank you.

How to export and import Build Profiles and Data Dictionary

$
0
0

I have looked at the documentation and examples for CloudClient 3.4 and 4.0 and didn't see anything (obvious) for exporting and importing Build Profiles and Data Dictionary items. We are upgrading from vCAC 6.0.1.1 to vRA 6.2.3 via greenfield deployment. Recreating the Build Profiles and Data Dictionary by hand is tedious and error prone. I was hoping to export from vCAC 6.0 and import to 6.2.3. I'm hoping to do the same between our prod and non-prod instances of vRA 6.2.3 too.


"Could not find the main class" Java error on Windows 7 but not on Windows XP

$
0
0

Dear all,

 

This is the first application that I am trying to package and virtualize with ThinApp.

 

It is an old business application that usually runs on Windows XP SP3 x86.

The .MSI that I generated with Thinapp works very well when installed on a Windows XP SP3 x86.

 

However, our main goal of using Thinapp is to install it on a Windows 7 SP1 x64.

But when doing so, the application triggers a Java Virtual Machine Launcher error message saying: "Could not find the main class. Program will exit."

 

I thought this was because the application integrates a JVM 1.4.2, and that my XP does not have any JVM pre-installed but the master image of my W7 has a 1.7 JVM. But even after I uninstalled the 1.7 JVM and installed the 1.4.2 on the W7 machine, I kept getting the error message so I guess it is not related.

 

Is there an option that I missed during the generation of my MSI so that it can work on a Windows 7 x64 ?

 

Thank you all for your help.

 

D.

Poor network performance with iSCSI

$
0
0

Hi Experts,

 

We've just installed esxi 6.0 (esssentials kit) on hp dl380 g9 with 6 nics (4x1GBit, 2x10Gbit) 2 xCPUs with 10 cores each. We have a QNAP 431 with dual GBit Network adapters attached to same physical network. I have mounted NAS as a separate datastore on esxi via iSCSI software adapter. Now I have two datastores, one for iScsi (vmds1) and one for local scsi array (vmds2). I have set MTU on both esxi vswitch and NAS to 9000 (jumbo frames).

 

When I copy files from vmds1 to vmds2 the performance is quite less than I expected. It takes an hour or more to copy a 100GByte file. I've been trying different configurations on networking but can not go any higher than 65 MBit/s.  Just to compare performance I have created an iScsi storage on the same NAS and mount it to my personal windows computer (I set MTU to 9000 on my PC too) and I was able to see 300MBit/s time to time when I copy files.


On ESXi I have two vswithces.
vswitch0 is for vm networking and management network .

vswitch1 is for iscsi adapter

 

* first, I have assigned only one Nic (1GB/s) to vswitch1. therefore I'll be able to see what is the throughput of a single nic. I was able to see average of 65 MB/s when I check performance statistics via vsphere client->Performance->Network/Realtime (and selected only the nic I've assigned to vswithc1). I'm also reading network utilization on QNAP interface.
Even though for a single nic the performance is very low but I didn't give up and at least tried to double it by nic teaming on vswitch

 

*then I have assigned second nic (other 1GB/s) to vswitch. I have choosen various options, created single vmkernel port and assigned both nics to this one and selected different load balancing options. then created second vmkernel port, assigned each nic to either of the vmkernel ports (by putting unused nics to "unused adapters" section).
No matter what I do, the total throughput for the single or dual nics never goes above average of 65-70 MB/s.

 

Can you think of anything, what am i doing wrong ? I'm using the same cabling, same physical switch, same infrasturcture to connect QNAP with my PC and esxi. bandwith between my pc and QNAP is 5 times better than the one between esxi and qnap.

 

Thanks in advance,

Sahin

Problem with Emulex FC LPe1105 card drivers on esxi6U1

$
0
0

Hi.

We are upgrading vSphere 5.5 to vSphere 6U1 on HP blade servers.

On a few servers (G5 and G6) we have FC mezzanine card Emulex LPe 1105, and esxi6 does not see this card.

 

I try with HPe esxi custom image, try to install HP bundle, also I found Emulex drivers on VMware site, but nothing have changed.

When I install esxi 5.5 everything is ok.

 

Can someone have this problem, any idea?

 

Thanks,

Ante

Password Policiy

$
0
0

Hello,
i have a password policy with the default settings:

 

 

 

Unbenannt.JPG

Affect this only the local accounts from @vsphere.local or the AD accounts?
My vcenter is connected to my AD.

 

If i put a 0 in the max. lifetime field then i don't change my password?

 


Thanks

 

Dennis

help "VmMemCow: 1644: p2m update: cannot reserve "

$
0
0

host is esxi 6.0 3380124

 

 

2016-01-29T20:37:33.599Z cpu0:32993)BC: 4992: Failed to flush 1 buffers of size 8192 each for object 'shell.log' fa7 36 4 56ab22e9 ed8519ea c004ad9 1f52c029 8 3b a402483d 55 0 0 0: No connection

2016-01-29T20:37:40.344Z cpu0:32785)NMP: nmp_ThrottleLogForDevice:3286: Cmd 0x9e (0x439d80294900, 0) to dev "mpx.vmhba32:C0:T0:L0" on path "vmhba32:C0:T0:L0" Failed: H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x20 0x0. Act:NONE

2016-01-29T20:37:40.345Z cpu0:32785)NMP: nmp_ThrottleLogForDevice:3286: Cmd 0x1a (0x439d80294900, 0) to dev "mpx.vmhba32:C0:T0:L0" on path "vmhba32:C0:T0:L0" Failed: H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x24 0x0. Act:NONE

2016-01-29T20:37:40.345Z cpu0:32785)ScsiDeviceIO: 2651: Cmd(0x439d80294900) 0x1a, CmdSN 0x9ce from world 0 to dev "mpx.vmhba32:C0:T0:L0" failed H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x24 0x0.

2016-01-29T20:55:55.828Z cpu0:32785)NMP: nmp_ThrottleLogForDevice:3286: Cmd 0x9e (0x439d802a5000, 0) to dev "mpx.vmhba32:C0:T0:L0" on path "vmhba32:C0:T0:L0" Failed: H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x20 0x0. Act:NONE

2016-01-29T20:55:55.858Z cpu1:32786)NMP: nmp_ThrottleLogForDevice:3286: Cmd 0x1a (0x439d802a5000, 0) to dev "mpx.vmhba32:C0:T0:L0" on path "vmhba32:C0:T0:L0" Failed: H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x24 0x0. Act:NONE

2016-01-29T20:55:55.865Z cpu0:32785)ScsiDeviceIO: 2651: Cmd(0x439d802a5000) 0x1a, CmdSN 0x9ed from world 0 to dev "mpx.vmhba32:C0:T0:L0" failed H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x24 0x0.

2016-01-29T20:55:55.865Z cpu1:32786)NMP: nmp_ThrottleLogForDevice:3286: Cmd 0x85 (0x439d802a5000, 34259) to dev "mpx.vmhba32:C0:T0:L0" on path "vmhba32:C0:T0:L0" Failed: H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x20 0x0. Act:NONE

2016-01-29T21:01:01.231Z cpu1:32786)NMP: nmp_ThrottleLogForDevice:3286: Cmd 0x9e (0x439d8027edc0, 0) to dev "mpx.vmhba32:C0:T0:L0" on path "vmhba32:C0:T0:L0" Failed: H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x20 0x0. Act:NONE

2016-01-29T21:01:01.265Z cpu1:32786)NMP: nmp_ThrottleLogForDevice:3286: Cmd 0x1a (0x439d8027edc0, 0) to dev "mpx.vmhba32:C0:T0:L0" on path "vmhba32:C0:T0:L0" Failed: H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x24 0x0. Act:NONE

2016-01-29T21:01:01.279Z cpu1:32786)ScsiDeviceIO: 2651: Cmd(0x439d8027edc0) 0x1a, CmdSN 0x9fc from world 0 to dev "mpx.vmhba32:C0:T0:L0" failed H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x24 0x0.

2016-01-29T21:01:01.401Z cpu1:32786)NMP: nmp_ThrottleLogForDevice:3286: Cmd 0x9e (0x439d8027e4c0, 0) to dev "mpx.vmhba32:C0:T0:L0" on path "vmhba32:C0:T0:L0" Failed: H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x20 0x0. Act:NONE

2016-01-29T21:01:01.403Z cpu1:32786)NMP: nmp_ThrottleLogForDevice:3286: Cmd 0x1a (0x439d8027e4c0, 0) to dev "mpx.vmhba32:C0:T0:L0" on path "vmhba32:C0:T0:L0" Failed: H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x24 0x0. Act:NONE

2016-01-29T21:01:01.403Z cpu1:32786)ScsiDeviceIO: 2651: Cmd(0x439d8027e4c0) 0x1a, CmdSN 0xa02 from world 0 to dev "mpx.vmhba32:C0:T0:L0" failed H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x24 0x0.

2016-01-29T21:05:56.539Z cpu1:32786)NMP: nmp_ThrottleLogForDevice:3286: Cmd 0x9e (0x439d8027ec40, 0) to dev "mpx.vmhba32:C0:T0:L0" on path "vmhba32:C0:T0:L0" Failed: H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x20 0x0. Act:NONE

2016-01-29T21:05:56.573Z cpu1:32786)NMP: nmp_ThrottleLogForDevice:3286: Cmd 0x1a (0x439d8027ec40, 0) to dev "mpx.vmhba32:C0:T0:L0" on path "vmhba32:C0:T0:L0" Failed: H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x24 0x0. Act:NONE

2016-01-29T21:05:56.586Z cpu1:32786)ScsiDeviceIO: 2651: Cmd(0x439d8027ec40) 0x1a, CmdSN 0xa35 from world 0 to dev "mpx.vmhba32:C0:T0:L0" failed H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x24 0x0.

2016-01-29T21:06:01.626Z cpu1:32786)NMP: nmp_ThrottleLogForDevice:3286: Cmd 0x9e (0x439d8028e380, 0) to dev "mpx.vmhba32:C0:T0:L0" on path "vmhba32:C0:T0:L0" Failed: H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x20 0x0. Act:NONE

2016-01-29T21:06:01.648Z cpu1:32786)NMP: nmp_ThrottleLogForDevice:3286: Cmd 0x1a (0x439d8028e380, 0) to dev "mpx.vmhba32:C0:T0:L0" on path "vmhba32:C0:T0:L0" Failed: H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x24 0x0. Act:NONE

2016-01-29T21:06:01.648Z cpu1:32786)ScsiDeviceIO: 2651: Cmd(0x439d8028e380) 0x1a, CmdSN 0xa3f from world 0 to dev "mpx.vmhba32:C0:T0:L0" failed H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x24 0x0.

2016-01-29T21:06:01.665Z cpu1:32786)NMP: nmp_ThrottleLogForDevice:3286: Cmd 0x9e (0x439d80291000, 0) to dev "mpx.vmhba32:C0:T0:L0" on path "vmhba32:C0:T0:L0" Failed: H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x20 0x0. Act:NONE

2016-01-29T21:06:01.666Z cpu1:32786)NMP: nmp_ThrottleLogForDevice:3286: Cmd 0x1a (0x439d80291000, 0) to dev "mpx.vmhba32:C0:T0:L0" on path "vmhba32:C0:T0:L0" Failed: H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x24 0x0. Act:NONE

2016-01-29T21:06:01.666Z cpu1:32786)ScsiDeviceIO: 2651: Cmd(0x439d80291000) 0x1a, CmdSN 0xa45 from world 0 to dev "mpx.vmhba32:C0:T0:L0" failed H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x24 0x0.

2016-01-29T21:06:02.241Z cpu1:34576 opID=4814eda1)World: 15514: VC opID 58FBC6D2-0000009F-9603 maps to vmkernel opID 4814eda1

2016-01-29T21:06:02.241Z cpu1:34576 opID=4814eda1)Config: 680: "SIOControlFlag2" = 1, Old Value: 0, (Status: 0x0)

2016-01-29T21:06:02.933Z cpu1:38793)World: vm 38797: 1647: Starting world vmm0:win7 of type 8

2016-01-29T21:06:02.933Z cpu1:38793)Sched: vm 38797: 6499: Adding world 'vmm0:win7', group 'host/user', cpu: shares=-1 min=-1 minLimit=-1 max=-1, mem: shares=-1 min=-1 minLimit=-1 max=-1

2016-01-29T21:06:02.933Z cpu1:38793)Sched: vm 38797: 6514: renamed group 43248 to vm.38793

2016-01-29T21:06:02.933Z cpu1:38793)Sched: vm 38797: 6531: group 43248 is located under group 4

2016-01-29T21:06:02.948Z cpu1:38793)MemSched: vm 38793: 8112: extended swap to 47142 pgs

2016-01-29T21:06:03.205Z cpu1:38793)World: vm 38803: 1647: Starting world vmm1:win7 of type 8

2016-01-29T21:06:03.579Z cpu1:38793)VSCSI: 4038: handle 8192(vscsi0:0):Creating Virtual Device for world 38797 (FSS handle 24503) numBlocks=50331648 (bs=512)

2016-01-29T21:06:03.579Z cpu1:38793)VSCSI: 273: handle 8192(vscsi0:0):Input values: res=0 limit=-1 bw=-1 Shares=-1

2016-01-29T21:06:03.607Z cpu1:32786)NMP: nmp_ThrottleLogForDevice:3286: Cmd 0x9e (0x439d80293880, 0) to dev "mpx.vmhba32:C0:T0:L0" on path "vmhba32:C0:T0:L0" Failed: H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x20 0x0. Act:NONE

2016-01-29T21:06:03.651Z cpu1:32786)NMP: nmp_ThrottleLogForDevice:3286: Cmd 0x1a (0x439d80293880, 0) to dev "mpx.vmhba32:C0:T0:L0" on path "vmhba32:C0:T0:L0" Failed: H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x24 0x0. Act:NONE

2016-01-29T21:06:03.651Z cpu1:32786)ScsiDeviceIO: 2651: Cmd(0x439d80293880) 0x1a, CmdSN 0xa7d from world 0 to dev "mpx.vmhba32:C0:T0:L0" failed H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x24 0x0.

2016-01-29T21:06:03.782Z cpu1:38797)VMMVMKCall: 235: Received INIT from world 38797

2016-01-29T21:06:03.785Z cpu1:38797)LSI: 1755: LSI: Initialized rings for scsi0 async=1, record=0 replay=0

2016-01-29T21:06:03.785Z cpu1:38803)VMMVMKCall: 235: Received INIT from world 38803

2016-01-29T21:06:03.910Z cpu0:38818)WARNING: NetDVS: 658: portAlias is NULL

2016-01-29T21:06:03.910Z cpu1:32858)CpuSched: 596: user latency of 32858 helper24-0 0 changed by 32858 helper24-0 -6

2016-01-29T21:06:03.910Z cpu1:32858)CpuSched: 596: user latency of 32858 helper24-0 -6 changed by 32858 helper24-0 0

2016-01-29T21:06:03.910Z cpu1:32858)CpuSched: 596: user latency of 32858 helper24-0 0 changed by 32858 helper24-0 -6

2016-01-29T21:06:03.910Z cpu0:38818)Net: 2441: connected win7 eth0 to VM Network, portID 0x2000005

2016-01-29T21:06:03.910Z cpu0:38818)NetPort: 1573: enabled port 0x2000005 with mac 00:00:00:00:00:00

2016-01-29T21:06:03.911Z cpu0:32858)CpuSched: 596: user latency of 32858 helper24-0 -6 changed by 32858 helper24-0 0

2016-01-29T21:06:03.911Z cpu0:32858)CpuSched: 596: user latency of 32858 helper24-0 0 changed by 32858 helper24-0 -6

2016-01-29T21:06:03.911Z cpu0:32858)CpuSched: 596: user latency of 32858 helper24-0 -6 changed by 32858 helper24-0 0

2016-01-29T21:06:03.920Z cpu1:34481)Config: 680: "SIOControlFlag2" = 0, Old Value: 1, (Status: 0x0)

2016-01-29T21:06:04.798Z cpu0:38797)VSCSI: 2590: handle 8192(vscsi0:0):Reset request on FSS handle 24503 (0 outstanding commands) from (vmm0:win7)

2016-01-29T21:06:04.798Z cpu1:32886)VSCSI: 2868: handle 8192(vscsi0:0):Reset [Retries: 0/0] from (vmm0:win7)

2016-01-29T21:06:04.798Z cpu1:32886)VSCSI: 2661: handle 8192(vscsi0:0):Completing reset (0 outstanding commands)

2016-01-29T21:06:18.511Z cpu0:38803)VSCSI: 2590: handle 8192(vscsi0:0):Reset request on FSS handle 24503 (0 outstanding commands) from (vmm0:win7)

2016-01-29T21:06:18.511Z cpu1:32886)VSCSI: 2868: handle 8192(vscsi0:0):Reset [Retries: 0/0] from (vmm0:win7)

2016-01-29T21:06:18.511Z cpu1:32886)VSCSI: 2661: handle 8192(vscsi0:0):Completing reset (0 outstanding commands)

2016-01-29T21:06:42.872Z cpu1:32786)NMP: nmp_ThrottleLogForDevice:3286: Cmd 0x9e (0x439d8027c840, 0) to dev "mpx.vmhba32:C0:T0:L0" on path "vmhba32:C0:T0:L0" Failed: H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x20 0x0. Act:NONE

2016-01-29T21:06:42.895Z cpu1:32786)NMP: nmp_ThrottleLogForDevice:3286: Cmd 0x1a (0x439d8027c840, 0) to dev "mpx.vmhba32:C0:T0:L0" on path "vmhba32:C0:T0:L0" Failed: H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x24 0x0. Act:NONE

2016-01-29T21:06:42.895Z cpu1:32786)ScsiDeviceIO: 2651: Cmd(0x439d8027c840) 0x1a, CmdSN 0xa8b from world 0 to dev "mpx.vmhba32:C0:T0:L0" failed H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x24 0x0.

2016-01-29T21:25:55.946Z cpu1:32786)NMP: nmp_ThrottleLogForDevice:3286: Cmd 0x9e (0x439d802990c0, 0) to dev "mpx.vmhba32:C0:T0:L0" on path "vmhba32:C0:T0:L0" Failed: H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x20 0x0. Act:NONE

2016-01-29T21:25:55.981Z cpu0:32785)NMP: nmp_ThrottleLogForDevice:3286: Cmd 0x1a (0x439d802990c0, 0) to dev "mpx.vmhba32:C0:T0:L0" on path "vmhba32:C0:T0:L0" Failed: H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x24 0x0. Act:NONE

2016-01-29T21:25:55.994Z cpu0:32785)ScsiDeviceIO: 2651: Cmd(0x439d802990c0) 0x1a, CmdSN 0xa9c from world 0 to dev "mpx.vmhba32:C0:T0:L0" failed H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x24 0x0.

2016-01-29T21:25:55.994Z cpu0:32785)NMP: nmp_ThrottleLogForDevice:3286: Cmd 0x85 (0x439d802990c0, 34259) to dev "mpx.vmhba32:C0:T0:L0" on path "vmhba32:C0:T0:L0" Failed: H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x20 0x0. Act:NONE

2016-01-29T21:27:29.825Z cpu0:32779)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:27:29.825Z cpu0:32779)P2MCache: 383: vm 38797: GetPhysMemRange failed for PPN 0x30edb canBlock 0 count 95 status Out of slots

2016-01-29T21:27:29.825Z cpu1:32878)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:27:29.825Z cpu1:32878)P2MCache: 383: vm 38797: GetPhysMemRange failed for PPN 0x30edb canBlock 1 count 96 status Out of slots

2016-01-29T21:27:29.825Z cpu1:32878)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:27:29.825Z cpu1:32878)P2MCache: 383: vm 38797: GetPhysMemRange failed for PPN 0x2fc07 canBlock 1 count 97 status Out of slots

2016-01-29T21:27:29.825Z cpu1:32878)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:27:29.825Z cpu1:32878)P2MCache: 383: vm 38797: GetPhysMemRange failed for PPN 0x30a06 canBlock 1 count 98 status Out of slots

2016-01-29T21:27:29.825Z cpu1:32878)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:27:29.825Z cpu1:32878)P2MCache: 383: vm 38797: GetPhysMemRange failed for PPN 0x30608 canBlock 1 count 99 status Out of slots

2016-01-29T21:27:29.825Z cpu1:32878)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:27:29.825Z cpu1:32878)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:27:29.825Z cpu1:32878)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:27:29.825Z cpu1:32878)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:27:29.825Z cpu1:32878)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:27:29.825Z cpu1:32878)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:27:29.825Z cpu1:32878)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:27:29.825Z cpu1:32878)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:27:29.825Z cpu1:32878)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:27:29.825Z cpu1:32878)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:27:29.825Z cpu1:32878)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:27:29.825Z cpu1:32878)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:27:29.825Z cpu1:32878)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:27:29.825Z cpu1:32878)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:27:31.304Z cpu1:32779)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:27:31.304Z cpu0:32879)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:27:31.304Z cpu0:32879)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:47.296Z cpu1:38803)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:47.296Z cpu0:32880)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:47.296Z cpu0:32880)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:47.296Z cpu0:32880)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:51.469Z cpu1:38803)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:51.469Z cpu0:32877)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:51.469Z cpu0:32877)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:51.469Z cpu0:32877)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:51.469Z cpu0:32877)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:51.469Z cpu0:32877)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:51.469Z cpu0:32877)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:51.469Z cpu0:32877)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:51.469Z cpu0:32877)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:51.469Z cpu0:32877)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:51.469Z cpu0:32877)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:51.469Z cpu0:32877)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:51.469Z cpu0:32877)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:51.469Z cpu0:32877)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:51.469Z cpu0:32877)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:51.469Z cpu0:32877)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:51.469Z cpu0:32877)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:51.469Z cpu0:32877)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:51.469Z cpu0:32877)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:51.469Z cpu0:32877)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:51.469Z cpu0:32877)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:51.469Z cpu0:32877)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:51.469Z cpu0:32877)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:51.469Z cpu0:32877)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:56.380Z cpu1:38803)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:56.380Z cpu0:32878)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:56.380Z cpu0:32878)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:56.380Z cpu0:32878)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:56.380Z cpu0:32878)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:56.380Z cpu0:32878)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:56.380Z cpu0:32878)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:56.380Z cpu0:32878)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:56.380Z cpu0:32878)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:56.380Z cpu0:32878)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:56.380Z cpu0:32878)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:56.380Z cpu0:32878)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:56.380Z cpu0:32878)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:56.380Z cpu0:32878)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:56.380Z cpu0:32878)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:56.380Z cpu0:32878)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:56.380Z cpu0:32878)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:56.380Z cpu0:32878)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:56.380Z cpu0:32878)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:59.119Z cpu0:38797)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:59.119Z cpu0:32879)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:59.119Z cpu0:32879)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:34:59.119Z cpu0:32879)VmMemCow: 1644: p2m update: cannot reserve - cur 1279 1279 rsvd 0 req 1 avail 1279

2016-01-29T21:55:56.106Z cpu1:32786)NMP: nmp_ThrottleLogForDevice:3286: Cmd 0x9e (0x439d802a1580, 0) to dev "mpx.vmhba32:C0:T0:L0" on path "vmhba32:C0:T0:L0" Failed: H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x20 0x0. Act:NONE

2016-01-29T21:55:56.135Z cpu0:32785)NMP: nmp_ThrottleLogForDevice:3286: Cmd 0x1a (0x439d802a1580, 0) to dev "mpx.vmhba32:C0:T0:L0" on path "vmhba32:C0:T0:L0" Failed: H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x24 0x0. Act:NONE

2016-01-29T21:55:56.149Z cpu0:32785)ScsiDeviceIO: 2651: Cmd(0x439d802a1580) 0x1a, CmdSN 0xab5 from world 0 to dev "mpx.vmhba32:C0:T0:L0" failed H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x24 0x0.

2016-01-29T21:55:56.149Z cpu0:32785)NMP: nmp_ThrottleLogForDevice:3286: Cmd 0x85 (0x439d802a1580, 34259) to dev "mpx.vmhba32:C0:T0:L0" on path "vmhba32:C0:T0:L0" Failed: H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x20 0x0. Act:NONE

2016-01-29T22:01:01.398Z cpu1:32786)NMP: nmp_ThrottleLogForDevice:3286: Cmd 0x9e (0x439d8029a2c0, 0) to dev "mpx.vmhba32:C0:T0:L0" on path "vmhba32:C0:T0:L0" Failed: H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x20 0x0. Act:NONE

2016-01-29T22:01:01.399Z cpu1:32786)NMP: nmp_ThrottleLogForDevice:3286: Cmd 0x1a (0x439d8029a2c0, 0) to dev "mpx.vmhba32:C0:T0:L0" on path "vmhba32:C0:T0:L0" Failed: H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x24 0x0. Act:NONE

2016-01-29T22:01:01.406Z cpu0:32785)ScsiDeviceIO: 2651: Cmd(0x439d8029a2c0) 0x1a, CmdSN 0xaca from world 0 to dev "mpx.vmhba32:C0:T0:L0" failed H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x24 0x0.

2016-01-29T22:01:01.518Z cpu0:32785)NMP: nmp_ThrottleLogForDevice:3286: Cmd 0x9e (0x439d80294600, 0) to dev "mpx.vmhba32:C0:T0:L0" on path "vmhba32:C0:T0:L0" Failed: H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x20 0x0. Act:NONE

2016-01-29T22:01:01.519Z cpu0:32785)NMP: nmp_ThrottleLogForDevice:3286: Cmd 0x1a (0x439d80294600, 0) to dev "mpx.vmhba32:C0:T0:L0" on path "vmhba32:C0:T0:L0" Failed: H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x24 0x0. Act:NONE

2016-01-29T22:01:01.519Z cpu0:32785)ScsiDeviceIO: 2651: Cmd(0x439d80294600) 0x1a, CmdSN 0xad0 from world 0 to dev "mpx.vmhba32:C0:T0:L0" failed H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x24 0x0.

2016-01-29T22:10:46.105Z cpu1:38797)VSCSI: 2590: handle 8192(vscsi0:0):Reset request on FSS handle 24503 (0 outstanding commands) from (vmm0:win7)

2016-01-29T22:10:46.105Z cpu0:32886)VSCSI: 2868: handle 8192(vscsi0:0):Reset [Retries: 0/0] from (vmm0:win7)

2016-01-29T22:10:46.105Z cpu0:32886)VSCSI: 2661: handle 8192(vscsi0:0):Completing reset (0 outstanding commands)

2016-01-29T22:10:47.266Z cpu1:38793)NetPort: 1780: disabled port 0x2000005

2016-01-29T22:10:47.266Z cpu1:32858)CpuSched: 596: user latency of 32858 helper24-0 0 changed by 32858 helper24-0 -6

2016-01-29T22:10:47.266Z cpu1:32858)CpuSched: 596: user latency of 32858 helper24-0 -6 changed by 32858 helper24-0 0

2016-01-29T22:10:47.266Z cpu1:38793)Net: 3646: disconnected client from port 0x2000005

2016-01-29T22:10:47.266Z cpu1:32858)CpuSched: 596: user latency of 32858 helper24-0 0 changed by 32858 helper24-0 -6

2016-01-29T22:10:47.266Z cpu1:32858)CpuSched: 596: user latency of 32858 helper24-0 -6 changed by 32858 helper24-0 0

2016-01-29T22:10:47.266Z cpu1:32858)CpuSched: 596: user latency of 32858 helper24-0 0 changed by 32858 helper24-0 -6

2016-01-29T22:10:47.266Z cpu1:32858)CpuSched: 596: user latency of 32858 helper24-0 -6 changed by 32858 helper24-0 0

2016-01-29T22:10:47.267Z cpu1:38793)VSCSI: 6726: handle 8192(vscsi0:0):Destroying Device for world 38797 (pendCom 0)

2016-01-29T22:10:47.381Z cpu1:32814)WARNING: PFrame: vm 38797: 1500: Deallocating pinned pgNum 0x69e02, pinCount 1 throttle 0.

Viewing all 183671 articles
Browse latest View live