Hi,
According to cpanel latest version of mysql is 4.1.14 but I need to updrade it to 4.1.16. Is there any way by which I can do it?
I am facing few problems with mysql 4.1.14....
Thanks
Hi,
According to cpanel latest version of mysql is 4.1.14 but I need to updrade it to 4.1.16. Is there any way by which I can do it?
I am facing few problems with mysql 4.1.14....
Thanks
/scripts/mysqlup
I think that will work..
or try /scripts/mysqlup --force
See if that works
please see the current version on http://httpupdate.cpanel.net/mysqlinstall/version
the latest is still version 4.1.14
-fl-
Last edited by fleksi; 01-27-2006 at 03:38 AM.
latest is still 4.1.14 for cpanel and thats why I asked for ways to update to 4.1.16.
But I guess it wont be possible with cpanel to update mysql manually...
Deep
If you are not running CentOS 3.x or RHEL 3.x:
Download the RPMs off dev.mysql.com your want client,standard,devel,server,embedded,shared and maybe bench.
Then rpm -Uvh ./* in the directory you downloaded them to.
Else paste the following into a new file, chmod +x it then run it (sh file)
Also, you may need to chmod 600 /scripts/mysqlup to stop it being 'upgraded' to 4.1.14Code:#!/bin/sh cd /root mkdir mysql-rpm cd mysql-rpm wget http://mysql.he.net/Downloads/MySQL-4.1/MySQL-server-standard-4.1.16-1.rhel3.i386.rpm wget http://mysql.he.net/Downloads/MySQL-4.1/MySQL-client-standard-4.1.16-1.rhel3.i386.rpm wget http://mysql.he.net/Downloads/MySQL-4.1/MySQL-devel-standard-4.1.16-1.rhel3.i386.rpm wget http://mysql.he.net/Downloads/MySQL-4.1/MySQL-shared-standard-4.1.16-1.rhel3.i386.rpm rpm -Uvh ./*.rpm
Last edited by fusioncroc; 01-27-2006 at 06:55 AM.
This is what I call a perfect solution
Thanks for the help...
I will follow your steps..
Regards,
Deep
Ouch...
error
When I went to that directory, I could not find the rpm file but ther was one .hdr file with the same name...Code:warning: ./MySQL-server-standard-4.1.16-1.rhel3.i386.rpm: V3 DSA signature: NOKEY, key ID 5072e1f5 error: Failed dependencies: perl(DBI) is needed by MySQL-server-standard-4.1.16-1.rhel3 Suggested resolutions: /var/spool/up2date/perl-DBI-1.32-9.i386.rpm
any suggestions?
Deep
Try installing perl-DBI via up2date, or yum if you run CentOS.