How to update mysql5 to mysql 5.5 ?? please help

just to update, I tried put 5.1 instead of 5.5 and it works and update mysql from 5.0 to 5.1
but how can i now upgrade to 5.5 ?
 
Regarding your screenshot: MySQL 5.5.24 is a very old version, and it does not seem to exist in custombuild, the newest version in MySQL 5.5.x is 5.5.34

I guess you have not run ./build update , I guess that is the problem. Please do this:

Code:
cd /usr/local/directadmin/custombuild
./build update
./build set mysql 5.5
./build update
./build versions (to see wich mysql version is available)
./build mysql
./build php n
 
thank you ditto, it worked but it fails to start mysql service so i delete this line"skip-locking" in file /etc/my.cnf
and restart mysql and it works

thanks again
 
Back
Top