Конвертирование pem ( privat rsa key ) в ppk ( putty private key )

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

1. Качаем puttygen с сайта разработчика
2. Загружаем pem файл как private key
3. Сохраняем как ppk ( File — Save as Private Key )

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: , , ,

everse mapping checking getaddrinfo for DOMAIN failed — POSSIBLE BREAKIN ATTEMPT!

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

Чтобы убрать эту строку из логов, вносим в /etc/ssh/sshd_config :

UseDNS no;

и перезагружаем ssh сервис :

service ssh restart

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: ,