AIQUM Windows upgrade fails with false disk space error
Applies to
- Active IQ Unified Manager 9.14 through 9.18 (AIQUM)
- Windows Server
Issue
- During a Windows Active IQ Unified Manager (AIQUM) upgrade, the installer exits with a Not Enough Space / Insufficient disk space error.
- Local volumes have ample free space, so the failure is not a true capacity shortage.
- The install log (
%LOCALAPPDATA%\Temp\netapp_um_install.log) shows a blank folder path and-1 GBfree space, for example:
Insufficient disk space! Setup will exit now. Make sure the folder <blank> has minimum 6 GB of free disk space. Available free disk space is:-1 GB.
Cause
- The Windows installer
checkDiskSpaceaction reads the MySQL data directory fromHKLM\SOFTWARE\NetApp\ThirdParty\mysqlDataDirintoMYSQL_DATA_DIR. - When that registry value is missing or incorrect,
MYSQL_DATA_DIRis blank. - Free space is queried against an empty path, so the installer reports
Available free disk space is:-1 GBand cancels setup.
Solution
- Take a VM-level snapshot or other recoverable backup before changing configuration.
- Confirm free space on the AIQUM install volume and the MySQL data volume meets the documented minimum.
- Open Registry Editor and locate
HKLM\SOFTWARE\NetApp\ThirdParty\mysqlDataDir. - If the value is missing or incorrect, set it to the actual MySQL data directory, for example
C:\ProgramData\MySQL\MySQLServerData. - Verify the
MYSQL84(orMYSQL8) Windows serviceImagePathpoints to the correctmysqld.exeand--defaults-filepath formy.iniunder that data directory. - Example elevated command to inspect the service configuration:
sc.exe qc MYSQL84 - If the service path or
my.inireferences are wrong, correct them, start the MySQL service, and confirm it stays running.
Example:sc.exe config MYSQL84 binPath= "\"C:\Program Files\MySQL\MySQL Server 8.0\bin\mysqld.exe\" --defaults-file=\"C:\ProgramData\MySQL\MySQLServerData\my.ini\" MYSQL84"net start MYSQL84 - Re-run the AIQUM upgrade installer.
- Confirm the upgrade completes and AIQUM services start normally.
Partner Notes
Additional Information
- Related symptom: if the installer later fails while waiting for MySQL to start, also review
my.inipath references and antivirus exclusions. - Related articles:
Internal Notes
- Fingerprint in install log: blank
Setting MYSQL_DATA_DIR=, thenAvailable free disk space is:-1 GB. - Lab recreate: clearing
mysqlDataDirbefore 9.14 to 9.18 upgrade reproduces the false disk-space failure.
