mysql

Дата: 20/11/2009 21:49:09Обсудить (0)

ISPConfig не видет MySQL

Подписаться на комментарии по RSS

Please enter your MySQL server:localhost
The MySQL server you specified cannot be reached!
Please enter your MySQL server:192.168.0.1
The MySQL server you specified cannot be reached!
Please enter your MySQL server:name.server
The MySQL server you specified cannot be reached!
Please enter your MySQL server:127.0.0.1
The MySQL server you specified cannot be reached!

Запуск производился в jail… путем поиска проблемы в коде было найдено, что проверяется сервер пигами.

%sudo sysctl security.jail.allow_raw_sockets=1
security.jail.allow_raw_sockets: 0 -> 1

Метки: | | | |

Дата: 20/11/2009 04:27:56Обсудить (0)

Ignoring query to other database

Подписаться на комментарии по RSS

MySQL выдае ошибку при любых обращениях:

mysql> show DATABASES;
Ignoring query to other database

решение проблемы:

из страничек мана видно

--verbose, -v
           Verbose mode. Produce more output about what the program does. This
           option can be given multiple times to produce more and more output.
           (For example, -v -v -v produces table output format even in batch
           mode.)

Пример подключения:

%mysql -v -u root -p

Метки: |