To be clear:
I think your problem with the mysql daemon (mysqld)
"Timeout error occurred trying to start MySQL Daemon.
Starting MySQL: [FAILED]"
is cause by a failure to run mysqld startup script: mysql_install_db.
Your problems with php and mysql are probably caused by a failure to install the mysql client pacakge.
You problem with phpmyadmin is caused by a combination of the other two.
Main Topics
Browse All Topics





by: Mike_The_SpikePosted on 2009-09-16 at 12:46:27ID: 25349334
It looks like your mysql reinstall was not complete.
libmysqlclient.so.16
is a dynamic library that is either missing, or not where the installed code expects to find it.
It's unusual (in my experience) for a package system to neglect to install required libraries or prerequisite packages, but check to see if there are more packages associated with mysql that you might need to install. Did you forget to install the mysql client package?
If you also tried to compile from source, it's possible that you've compiled software that can't find it's libraries. If these binaries are found in your path before a binary that was installed by a package system, they could be "intercepting" your invocation.
Try typing the full path to the binary you want to run and see if you get different error messages.