I dont know EXACTLY,
But i try this
1. yum install e-smith-mysql
2. signal-event post-upgrade
3. signal-event reboot
This won't work because you have extra packages installed that should not be there. It looks like you tried to install mysql5. Don't try things like this if you don't know what you are doing. Adding and upgrading packages on SME is dangerous...DON"T DO IT!!!
4. rpm -qa *my*
And get this
MySQL-client-standard-5.0.19-0.rhel4
MySQL-test-standard-5.0.19-0.rhel4
MySQL-server-standard-5.0.19-0.rhel4
MySQL-devel-standard-5.0.19-0.rhel4
MySQL-standard-debuginfo-5.0.19-0.rhel4
MySQL-shared-compat-5.0.19-0.rhel4
MySQL-shared-standard-5.0.19-0.rhel4
These all must be removed on at a time. Try this:
rpm -e MySQL-client-standard-5.0.19-0.rhel4
rpm -e MySQL-test-standard-5.0.19-0.rhel4
rpm -e MySQL-server-standard-5.0.19-0.rhel4
rpm -e MySQL-devel-standard-5.0.19-0.rhel4
rpm -e MySQL-standard-debuginfo-5.0.19-0.rhel4
rpm -e MySQL-shared-compat-5.0.19-0.rhel4
rpm -e MySQL-shared-standard-5.0.19-0.rhel4
You might have to use the --nodeps option for this like
rpm -e --nodeps MySQL-client-standard-5.0.19-0.rhel4