undefined method `chomp' for nil:NilClass (RDoc::Error)

Posted in Новости on 26 ноября, 2014 by admin

Fix :

gem update rdoc

Tags: , ,

Установка gpg ключа mirror.yandex.ru

Posted in Новости on 25 ноября, 2014 by admin


gpg --keyserver hkp://subkeys.pgp.net --recv-keys 07DC563D1F41B907
gpg --export | apt-key add -

Tags: , ,

no resolver defined to resolve ocsp.startssl.com while requesting certificate status, responder: ocsp.startssl.com

Posted in Новости on 4 октября, 2014 by admin

Ошибка связана с тем, что в nginx был включен ssl_stapling , но не был указан адрес резолвера. Чтобы исправить проблему добавляем в конфиг виртхоста, где прописан степлинг :

resolver 8.8.8.8; # or another dns

и перезагружаете сервис.

Tags: , , ,

/var/lib/dpkg/info/mysql-server-5.5.postinst: line 146: logger: command not found

Posted in Новости on 15 сентября, 2014 by admin


apt-get install bsdutils

Tags: ,

Unattended non-interactive установка roundcube c хранением БД в MySQL

Posted in Новости on 23 июля, 2014 by admin

Сохраняем словарь ответов :

roundcube-core roundcube/mysql/method select tcp/ip
roundcube-core roundcube/dbconfig-reinstall boolean false
roundcube-core roundcube/dbconfig-install boolean true
roundcube-core roundcube/purge boolean false
roundcube-core roundcube/language select ru_RU
roundcube-core roundcube/db/dbname string roundcube
roundcube-core roundcube/remote/newhost string 127.0.0.1
roundcube-core roundcube/remote/port string 3306
roundcube-core roundcube/restart-webserver boolean false
roundcube-core roundcube/install-error select ignore
roundcube-core roundcube/mysql/admin-user string root
roundcube-core roundcube/mysql/admin-pass password mysqlrootpass
roundcube-core roundcube/mysql/app-pass password
roundcube-core roundcube/database-type select mysql
roundcube-core roundcube/remote/host select 127.0.0.1
roundcube-core roundcube/db/app-user string roundcube

где mysqlrootpass - текущий актуальный пароль для root MySQL

Подгружаем ответы из нашего словаря в систему

debconf-set-selections < roundcube.txt

Ставим пакет :

apt-get install roundcube roundcube-mysql

Tags: ,