El servidor MySQL no se inicia en Fedora 12


-1

Instalé MySQL usando yum install mysqlFedora 12. Ahora, ¿cómo inicio el servidor?

[root@localhost init.d]# which mysql
/usr/bin/mysql

[root@localhost init.d]# mysql --version
mysql  Ver 14.14 Distrib 5.1.46, for redhat-linux-gnu (x86_64) using readline 5.1

Aquí está la lista de todos los comandos anteriores que probé

[root@localhost init.d]# mysql -h localhost -u username -p
Enter password: 
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql
/mysql.sock' (111)
[1]+  Exit 127                /usr/bin/mysqld_safe


[root@localhost init.d]# /etc/init.d/mysql start
bash: /etc/init.d/mysql: No such file or directory


[root@localhost init.d]# /usr/bin/mysql start
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql
/mysql.sock' (111)


[root@localhost init.d]# services mysqld start
bash: services: command not found


[root@localhost init.d]# chkconfig --level 345 mysql on
error reading information on service mysql: No such file or directory

[root@localhost init.d]# service mysql start
mysql: unrecognized service

[root@localhost init.d]# /etc/init.d/mysqld start
bash: /etc/init.d/mysqld: No such file or directory

También tenía que hacer esto ... yum install mysql-server(¡Ay!)

Ahora me sale este error

[root@localhost vineeth]# service mysqld start
MySQL Daemon failed to start.
Starting MySQL:                                            [FAILED]

[root@localhost vineeth]# /etc/init.d/mysqld start
MySQL Daemon failed to start.
Starting MySQL:                                            [FAILED]

Ya debería estar ejecutándose, ¿no? ¿Puedes conectarte usando mysql -h localhost -u username -p?
Pekka 웃

1
Deberías preguntar esto en superuser.com> /etc/init.d/mysql start (creo)

google, encontrarás la respuesta antes.
septiembre

Respuestas:




0
chkconfig --level 345 mysql on

Pero no estoy realmente seguro de si inicia el demonio o simplemente lo configura para que se inicie automáticamente.

Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.