ОШИБКИ

Vagrant attempted to execute the capability 'configure_networks'

Vagrant attempted to execute the capability 'configure_networks'
on the detect guest OS 'linux', but the guest doesn't
support that capability. This capability is required for your
configuration of Vagrant. Please either reconfigure Vagrant to
avoid this capability or fix the issue by creating the capability.

pg_dump: продолжение работы с другой версией сервера невозможно

bash-4.1$ pg_dump ...
Пароль:
pg_dump: версия сервера: 9.3.1; версия pg_dump: 8.4.18
pg_dump: продолжение работы с другой версией сервера невозможно

На сервере может стоять несколько версий pg_dump, необходимо найти нужную версию и выставить на нее указатель

sudo ln -s /usr/pgsql-9.3/bin/pg_dump /usr/bin/pg_dump --force

 

"Cannot compile 'Python.h'. Perhaps you need to "\

При установке numpy под виртуальным окружением для 3ого питона:

pip3 install numpy

Появлялась следующая ошибка:

File "numpy/core/setup.py", line 289, in check_types
"Cannot compile 'Python.h'. Perhaps you need to "\
SystemError: Cannot compile 'Python.h'. Perhaps you need to install python-dev|python-devel.

Помогла установка python3.4-dev

apt-get install python3.4-dev

wysiwyg. Невозможно определение версии редактора CKEditor.

drupal version of ckeditor could not be detected
drupal Невозможно определение версии редактора CKEditor.

В новых версия ckeditor, версия модуля стала писаться в двойных кавычках. В то время как модуль wysiwyg ее ищет в одинарных.

Необходимо отредактировать файл: sites/all/modules/wysiwyg/editors/ckeditor.inc :

DROP DATABASE ERROR: database 'target_database' is being accessed by other users

Проявляется так:

postgres=# drop database test;
ERROR:  database "test" is being accessed by other users
DETAIL:  There is 1 other session using the database.

Целиком читать тут

First, find the activities that are taken place against the target database,
you can query the pg_stat_activity view as the following query:

InnoDB: Unable to lock ./ibdata1

В лог файле mysql выволилось следующее /var/log/mysql/error.log


InnoDB: Unable to lock ./ibdata1, error: 11
InnoDB: Check that you do not already have another mysqld process
InnoDB: using the same InnoDB data or log files.

Вылечилось так:

/etc/init.d/mysql stop 
mv /var/lib/mysql/ibdata1 /var/lib/mysql/ibdata1.bak 
cp /var/lib/mysql/ibdata1.bak /var/lib/mysql/ibdata1 
/etc/init.d/mysql start

Новому файлу ibdata1 надо еще не забыть дать права для mysql

Страницы