It looks like this problem is do to the size of the component column in the mysql tables being too small. You can increase the size of these columns by following these steps.
1. Log into mysql as root. Code: mysql -u root -p events 2. Increase column size for status.component and history.component Code: mysql> alter table status modify component varchar(255); mysql> alter table history modify component varchar(255); 3. Type 'exit' or ctl-d to get out of mysql If you have a large status or history table this may take a while to complete. -jason -------------------- m2f -------------------- Read this topic online here: http://community.zenoss.com/forums/viewtopic.php?p=23615#23615 -------------------- m2f -------------------- _______________________________________________ zenoss-users mailing list [email protected] http://lists.zenoss.org/mailman/listinfo/zenoss-users
