I have to install the latest version of MySQL server community edition 5.1.51 (i think is the latest). I haven't installed any MySQL on this centos machine yet, but when I do a locate mysql - it shows me mysqldump, mysqlshow etc etc on this system.
Now I have downloaded the rpms required :
MySQL-client-community-5.1.51-1.rhel5.i386.rpm
MySQL-devel-community-5.1.51-1.rhel5.i386.rpm
MySQL-embedded-community-5.1.51-1.rhel5.i386.rpm
MySQL-server-community-5.1.51-1.rhel5.i386.rpm
MySQL-shared-community-5.1.51-1.rhel5.i386.rpm
MySQL-shared-compat-5.1.51-1.rhel5.i386.rpm
MySQL-test-community-5.1.51-1.rhel5.i386.rpm
When I try to (as root) do the following :
root@localhost#rpm -ivh MySQL-client-community-5.1.51.rhel5.i386.rpm
I got a long list of errors saying that the old version conflicts with this one, so I tried to remove mysql (if any) via rpm -e mysql
it then complained about some dependencies for e.g. dovecot.x.s.x.
and lib.something
.
I removed rpm -e dovecot
then rpm -e mysql
and it finished without complaining
I then installed :
rpm -ivh MySQL-client-community-5.1.51-1.rhel5.i386.rpm
rpm -ivh MySQL-devel-community-5.1.51-1.rhel5.i386.rpm
rpm -ivh MySQL-server-community-5.1.51-1.rhel5.i386.rpm
`rpm -ivh MySQL-shared-compat-5.1.51-1.rhel5.i386.rpm
and when I tried to install :
rpm -ivh MySQL-shared-community-5.1.51-1.rhel5.i386.rpm
I got the following error :
Preparing... ########################################### [100%]
file /usr/lib/libmysqlclient.so.16.0.0 from install of MySQL-shared-community-5.1.51-1.rhel5.i386 conflicts with file from package MySQL-shared-compat-5.1.51-1. rhel5.i386
file /usr/lib/libmysqlclient_r.so.16.0.0 from install of MySQL-shared-community-5.1.51-1.rhel5.i386 conflicts with file from package MySQL-shared-compat-5.1.51- 1.rhel5.i386
I have checked that MySQL is running and I can login to MySQL Server fine, do you think I need anyother packages for MySQL to function properly, we will be testing a MySQL DB on this machine but on 5.1.51.
Any thoughts / suggestions would be helpful.
Kind Regards