The issue started after copying the VM to another host in KVM (Kernel-based Virtual Machine).
The MySQL service and the Linux host have already been restarted, but the problem remains.
DX NetOps Spectrum: Any version
The issue was fixed after backing up the reporting db from the original host and restoring it to the copied host.
Stop the Tomcat service prior running the mysqldump and mysql command lines to backup and restore MySQL database:
To backup:
./mysqldump --defaults-file=../my-spectrum.cnf -uroot -p<password> --opt --routines --ignore-table=reporting.v_active_user_model --ignore-table=reporting.v_alarm_activity --ignore-table=reporting.v_ncm_config_diff --ignore-table=reporting.v_security_string_accessibility_by_landscape --ignore-table=reporting.v_user_report_security --compress --databases reporting > /tmp/dump_reporting.sql
To restore:
./mysql --defaults-file=../my-spectrum.cnf -uroot -p<password> reporting < /tmp/dump_reporting.sql