Difference between revisions of "ESXi 6.5 Slow performance"

From Teknologisk videncenter
Jump to: navigation, search
(Created page with "If ESXi disk performance is slow it might be because it uses it's own native driver <source cli=bash> [root@localhost:/] esxcli software vib list | grep ahci sata-ahci...")
 
m
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
If [[ESXi]] disk performance is slow it might be because it uses it's own native driver
 
If [[ESXi]] disk performance is slow it might be because it uses it's own native driver
<source cli=bash>
+
<source lang=bash>
 
[root@localhost:/] esxcli software vib list | grep ahci
 
[root@localhost:/] esxcli software vib list | grep ahci
 
sata-ahci                      3.0-22vmw.650.0.0.4564106            VMW    VMwareCertified  2018-09-03
 
sata-ahci                      3.0-22vmw.650.0.0.4564106            VMW    VMwareCertified  2018-09-03
Line 6: Line 6:
 
</source>
 
</source>
 
The native driver ''vmw-ahci'' [https://www.opvizor.com/esxi-6-5-storage-performance-issues-and-fix is known to slow disk performance down]
 
The native driver ''vmw-ahci'' [https://www.opvizor.com/esxi-6-5-storage-performance-issues-and-fix is known to slow disk performance down]
 +
 +
Disable the ''vmw-ahci" driver with
 +
<source lang=bash>
 +
esxcli system module set --enabled=false --module="vmw_ahci"
 +
</source>
 +
'''''NOTE:''''' The underscore and not dash in drivername!
 +
check with
 +
<source lang=bash>
 +
[root@localhost:~] esxcli system module list | grep ahci
 +
ahci                                true        true
 +
vmw_ahci                      false      false
 +
</source>
 +
 +
Reboot the esxi server - and hopefully, it works and is faster now.
 +
[[Category:ESXi]]

Latest revision as of 13:09, 8 September 2018

If ESXi disk performance is slow it might be because it uses it's own native driver

[root@localhost:/] esxcli software vib list | grep ahci
sata-ahci                      3.0-22vmw.650.0.0.4564106             VMW     VMwareCertified   2018-09-03
vmw-ahci                       1.0.0-34vmw.650.0.14.5146846          VMW     VMwareCertified   2018-09-03

The native driver vmw-ahci is known to slow disk performance down

Disable the vmw-ahci" driver with

esxcli system module set --enabled=false --module="vmw_ahci"

NOTE: The underscore and not dash in drivername! check with

[root@localhost:~] esxcli system module list | grep ahci
ahci                                true        true
vmw_ahci                       false       false

Reboot the esxi server - and hopefully, it works and is faster now.