VMware vCenter Server Appliance 6.0.x
VMware vCenter Server Appliance 6.5.x
VMware vCenter Server Appliance 6.7.x
VMware vCenter Server 7.0.x
VMware vCenter Server 8.0
次の手順にて vCenter Server の /storage/log 領域を枯渇させている事象を調査します。
# cd /storage/log
# find . -type f -print0 | xargs -0 du -h | sort -rh | head -n 10
3.7G ./vmware/wcp/stdstream.log-2.stderr
2.5G ./vmware/wcp/stdstream.log-1.stderr
266M ./vmware/wcp/stdstream.log.stderr
190M ./vmware/vpxd/vpxd-profiler-154.log
104M ./vmware/procstate
101M ./vmware/vsphere-ui/logs/threadmonitor1.log
83M ./vmware/wcp/stdstream.log-4.stderr
46M ./vmware/vpxd-svcs/perf.log.37
45M ./vmware/sso/ssoAdminServer.log
41M ./vmware/vsphere-ui/logs/threadmonitor.log
# find ./ -type d -exec sh -c 'echo -n "{}: " && find "{}" -type f | wc -l' \; | awk '$2 > 100' | sort -k2,2nr
./: 1442
./etc: 486
./etc/vmware: 366
./var: 321
./var/run: 275
./var/log: 274
./usr: 108
影響のあるバージョン | 関連する KB のリンク |
---|---|
6.0 | |
6.0 Update 3 未満 |
|
7.0 Update 1C 未満 | |
7.0 before Update 3c | |
7.0 Update 3o 未満 8.0 Update 1 未満 |
|
7.0, 8.0 の最新バージョンでも未解消 | |
7.0 Update 1 - 7.0 Update 3 にて一部修正 - 8.0 にて修正 |
|
7.0 Update 2 - 7.0 Update 3 にて修正 |
|
8.0。 - 8.0 Update 3 にて修正 |
|
すべてのバージョン |
==============================================
Resolution に記載の find コマンドに加えて、下記の du コマンドもファイルシステム内の容量の大きいディレクトリを速やかに特定するのに役立ちます:
du -xh -d 1 | sort -rh