I'm trying to go from MySQL 4 to 5 and I'm having trouble getting things working with Lyle's instructions above. I downloaded the mysql-standard-5.0.20a-linux-i686-glibc23 tarball, unpacked it, and added a link. But then the trouble began:
First of all,
Code:
# service mysqld stop
didn't work for my. I got "unrecognized service". I looked at the process list and saw a bunch of different mysqld processes, all started by mysqld_safe. On a whim I tried
Code:
#service mysql stop
(without the d) and that worked.
Now I find that I have no mysqld file in /etc/init.d. This directory just contains a bunch of executables (including mysql) which does me no good. Where do I go to change which version of mysql gets used on startup.
Next up I'm worrying about having to remember to use /usr/local/mysql/bin/mysql instead of just mysql (which lives in /usr/bin). Isn't there some way around this?
Thanks,
Songdog