Active IQ Unified Manager Update fails because of password setting
Applies to
- ActiveIQ Unified Manager (AIQUM) 9.6+
- MySQL upgrade outside AIQUM
Issue
- AIQUM upgrade fails with error message:
Setup failed to configure MySQL settings and will exit now. Try again.

Use Strong Password Encryption for Authenticationwas selected during MySQL upgrade- query
mysql> select Host,User,plugin,password_last_changed from mysql.user;showscaching_sha2_passwordfor user root
Cause
- Upgrade MySQL outside the AIQUM is not suported
- AIQUM 9.8P1 could not be installed due to the set authentication method of MySQL user root
- Authentication method
caching_sha2_passwordis not supported
Solution
Changing the password with
mysql_native_password BY 'MySecurePassword'. Below are the steps to follow:- Open
cmd(run as administrator) -
C:\Windows\System32> cd "%MYSQL_HOME%\bin" -
C:\Program Files\MySQL Server 8.0\bin> mysql.exe -u root -p -
Enter password:(type the MySQL root password) -
mysql> select Host,User,plugin,password_last_changed from mysql.user; -
mysql> ALTER USER root@localhost IDENTIFIED WITH mysql_native_password BY 'MySecurePassword'; - restart of the server
Additional Information
How to access MySQL within all Active IQ Unified Manager platforms
Internal Notes
If this is encountered, please update Active IQ Unified Manager Update fails because of password setting.
- Active IQ Unified Manager Update fails because of password setting#Applies_to
- Active IQ Unified Manager Update fails because of password setting#Issue
- Active IQ Unified Manager Update fails because of password setting#Cause
- Active IQ Unified Manager Update fails because of password setting#Solution
- Active IQ Unified Manager Update fails because of password setting#Additional_Information
- Active IQ Unified Manager Update fails because of password setting#Internal_Notes
