廣告

2024 年 4 月
1234567
891011121314
15161718192021
22232425262728
2930  

彙整

vix-async-pipe程序造成 ESXi Server Cpu Loading滿載問題

今天看到其中一台 ESXi Server Cpu的LOADING滿載,可是看這台下面的VM機器CPU LOADING都很低,是什麼東西造成的到底?

1

 

使用SSH連入再下 top 指令查看,原來是這隻程序在搞鬼,不太清楚它是做啥用的,

vix-async-pipe

 

查了官方網頁的解法:

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

To renice the vix-async-pipe process:

  1. Identify the PID (process ID) of the process with the command:
    # ps ax|grep vix-async-pipe
    In the output, the first number on the left is the PID of the process.

  2. With the PID from step 1, run the command:
    # renice -5 <PID>

  3. To confirm that the change took effect, run the command top and look at the value in the NI column.

沒用……………………………………

 

官方網頁說若沒用再試試這招:

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

[root@server]# service mgmt-vmware restart
Stopping VMware ESX Server Management services:
VMware ESX Server Host Agent Watchdog [ OK ]
VMware ESX Server Host Agent [ OK ]
Starting VMware ESX Server Management services:
VMware ESX Server Host Agent (background) [ OK ]
Availability report startup (background) [ OK ]
[root@server]# service vmware-vpxa restart
Stopping vmware-vpxa: [ OK ]
Starting vmware-vpxa: [ OK ]
[root@server]#

========================

service vmware-vpxa restart <==這部份我執行會說我系統沒這 service…所以我只有執行service mgmt-vmware restart 結果就好了!

讀者也會看的其它文章:

    Comments are closed.