\”Timeout error occurred trying to start MySQL Daemon\” - Fedora
Otro problema más al iniciarl la base de datos en Fedora… y es que da un fallo en el arranque: “Timeout error occurred trying to start MySQL Daemon”
[root@ermigue init.d]# service mysqld start
Timeout error occurred trying to start MySQL Daemon.
Iniciando MySQL: [FALLÓ]
Y su solución cual es? pues fácil, editamos el siguiente archivo /etc/init.d/mysqld
[root@ermigue mysql]# cd /etc/init.d/
[root@ermigue init.d]# emacs mysqldY entonces, en la linea superior a:
echo “Timeout error occurred trying to start MySQL Daemon.”Se debe de modificar el if que hay por este:
if [ -n “`/usr/bin/mysqladmin -u $RANDOM ping 2> /dev/null`” ]; then
Eto es debido a la puesta en marcha del script de MySQL incorrectamente, intentando hacer un ping al puerto por TCP para contactar con el servidor.
