mbellerue wrote:Okay, we're going to take a look at your profile on our end. Can you run this query and post or PM the results?
Code: Select all
mysql -D nagiosxi -e "SELECT * FROM xi_usermeta WHERE keyname = 'ldap_ad_username' AND user_id =1;"
As my Linux Server root account, I ran the above at the command line and the following message was:
"ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)"
I haven't changed any password when all was migrated from "OLD". I didn't change any database password, too.
I logged in to MySQL and as root and was greeted with:
"
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 13810
Server version: 5.5.64-MariaDB MariaDB Server
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.
"
So, with what little I have of MySQL, I did the following:
MariaDB [(none)]> SELECT * FROM xi_usermeta WHERE keyname = 'ldap_ad_username' AND user_id =1;
ERROR 1046 (3D000): No database selected
MariaDB [(none)]> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| nagios |
| nagiosql |
| nagiosxi |
| performance_schema |
| test |
+--------------------+
7 rows in set (0.08 sec)
MariaDB [(none)]> use nagiosxi;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
MariaDB [nagiosxi]> SELECT * FROM xi_usermeta WHERE keyname = 'ldap_ad_username' AND user_id =1;
Empty set (0.00 sec)