wilhelm949,
Check this:
Is snmpd running? Try
Code:
service snmpd status
If not, either install it and start it or just start it. Set it to run at
startup
Code:
chkconfig --level 2 3 4 5 snmpd on
Do you have a users in your mysql database called "zenoss' on the 'localhost'
with a password of 'zenoss'. From your error, it doesn't look like the root
password in mysql was cleared out either. Try the following :
Code:
mysql -u root -p
Enter password: /*If you cleared out the root password, just hit enter. If
you get an error, you didn't clear out the root password*/
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 10 to server version: 5.0.22
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> use mysql;
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
mysql> select host,user from user;
+-------------------------+--------+
| host | user |
+-------------------------+--------+
| localhost | |
| localhost | root |
| sysmon2.xxx | |
| sysmon2.xxx | root |
+-------------------------+--------+
4 rows in set (0.06 sec)
mysql> create user zenoss;
Query OK, 0 rows affected (0.10 sec)
mysql> select host,user from user;
+-------------------------+--------+
| host | user |
+-------------------------+--------+
| localhost | |
| localhost | root |
| % | zenoss |
| sysmon2.xxx| |
| sysmon2.xxx | root |
+-------------------------+--------+
5 rows in set (0.00 sec)
mysql> update mysql.user SET host='localhost' WHERE user='zenoss';
Query OK, 1 row affected (0.01 sec)
Rows matched: 1 Changed: 1 Warnings: 0
mysql> set password for 'zenoss'@'localhost' = PASSWORD('zenoss');
Query OK, 0 rows affected (0.05 sec)
mysql> select host,user from user;
+-------------------------+--------+
| host | user |
+-------------------------+--------+
| localhost | |
| localhost | root |
| localhost | zenoss |
| sysmon2.xxx | |
| sysmon2.xxx| root |
+-------------------------+--------+
Then start Zenoss
-------------------- m2f --------------------
Read this topic online here:
http://community.zenoss.com/forums/viewtopic.php?p=17876#17876
-------------------- m2f --------------------
_______________________________________________
zenoss-users mailing list
[email protected]
http://lists.zenoss.org/mailman/listinfo/zenoss-users