У меня проблема с запуском mysql. Когда я печатаю

service mysql start

Все, что я получил, это

ОШИБКА 2002 (HY000): Не удается подключиться к локальному серверу MySQL через сокет /var/lib/mysql/mysql.sock '(2)**

Как я могу это исправить?

1 ответ1

1

Сначала проверьте статус услуги

[root @ localhost ~] # сервис mysqld status

MySQL остановлен

[root@localhost ~]# su - max
Password:

Если служба остановлена, то в этот раз вы получаете этот тип ошибки

 
[max@localhost ~]$ mysql
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2)

Теперь запустите сервис

[max@localhost ~]$ su -
Password: 
[root@localhost ~]# service mysqld start
Starting mysqld:                                           [  OK  ]

Теперь проверь статус сервиса

[root@localhost ~]# service mysqld status
mysqld (pid  6157) is running...
[root@localhost ~]# exit
logout
[max@localhost ~]$ mysql
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.1.61 Source distribution

Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> 

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .