hey ron, it looks like you've run into rpm dependency issues. if you check out what the zenoss package wants, you'll see something like this:
Code: [EMAIL PROTECTED] ~]# rpm -q --requires zenoss ... /usr/bin/python /usr/sbin/useradd /usr/sbin/userdel MySQL-client-standard >= 5.0.22 MySQL-server-standard >= 5.0.22 libart_lgpl_2.so.2 libc.so.6 libc.so.6(GLIBC_2.0) libc.so.6(GLIBC_2.1) libc.so.6(GLIBC_2.1.2) ... if you find the package name of the mysql server installed on your box, you can run this command to find out what it provides: rpm -q --provides <mysql-pkg-name> this is a common problem with using packages from various vendors - there are no standards for the "Provides:" line in a rpm spec file, so while you may meet a requirement, the database thinks otherwise. if you are really sure you know what you are doing, you can always force the install of the zenoss rpm - it's highly likely it will work with the version of mysql you have installed....but don't quote me ;) -dustin ------------------------ Dustin Mollo -------------------- m2f -------------------- Read this topic online here: http://community.zenoss.com/forums/viewtopic.php?p=5043#5043 -------------------- m2f -------------------- _______________________________________________ zenoss-users mailing list [email protected] http://lists.zenoss.org/mailman/listinfo/zenoss-users
