verify_reply couldn't decrypt with error: error decoding block for decryption

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

Ошибка пиринга возникает при жестком рассинхроне времени ( не зависит от часовой зоны ). Итак :

1. apt-get install ntpdate ( yum install ntpdate )
2. ntpdate ntp.remco.org

Tags: , , ,

unable to enumerate USB device on port

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

1. Идем в /sys/bus/pci/drivers/ehci_hcd :
{code}
cd /sys/bus/pci/drivers/ehci_hcd
{/code}
2. находим имя файла вида 0000:00:xx.x ( например — 0000:00:1d.7 )
3. выгружаем :
{code}
sh -c 'echo -n «0000:00:xx.x» > unbind'
{/code}
4. PROFIT!!!!

Tags: , ,

php git

Posted in Новости on 30 августа, 2015 by admin

http://php.net/git.php

Tags: ,

iptables apt-get update

Posted in Новости on 18 августа, 2015 by admin


iptables -I INPUT -p tcp --sport 80 -m state --state ESTABLISHED -j ACCEPT

Tags: ,

Миграция между версиями postgresql ( 9.1 to 9.4 )

Posted in Новости on 16 августа, 2015 by admin

1. Останавливаем все кластеры, с которыми будет проводиться работа :

/etc/init.d/postgresql stop

2. Логинимся под potgres для продолжения работ :

sudo -u postgres -i

3. Проверяем корректность миграции ( check ) :

cd /tmp
mkdir psql_up
cd psql_up
--- одна строка ---
/usr/lib/postgresql/9.4/bin/pg_upgrade -c -k -b /usr/lib/postgresql/9.1/bin -B /usr/lib/postgresql/9.4/bin -d ../9.1/main/ -D ../9.4/main/ -o " -c config_file=/etc/postgresql/9.1/main/postgresql.conf " -O " -c config_file=/etc/postgresql/9.4/main/postgresql.conf "
--------------------

Проверяем что все ОК пункты

postgres@xxx:~/upgrade$ /usr/lib/postgresql/9.4/bin/pg_upgrade -c -k -b /usr/lib/postgresql/9.1/bin -B /usr/lib/postgresql/9.4/bin -d ../9.1/main/ -D ../9.4/main/ -o " -c config_file=/etc/postgresql/9.1/main/postgresql.conf " -O " -c config_file=/etc/postgresql/9.4/main/postgresql.conf "
Performing Consistency Checks
-----------------------------
Checking cluster versions ok
Checking database user is a superuser ok
Checking database connection settings ok
Checking for prepared transactions ok
Checking for reg* system OID user data types ok
Checking for contrib/isn with bigint-passing mismatch ok
Checking for invalid "line" user columns ok
Checking for presence of required libraries ok
Checking database user is a superuser ok
Checking for prepared transactions ok

*Clusters are compatible*

4. Теперь если все ОК, убираем флаг «-c» ( check ) и ждем завершения миграции
5. Гасим старый кластер ( я не удалял, а на всякий случай просто перенес из рабочего каталога наружу )

mv /usr/lib/postgresql/9.1 /root

6. Меняем в настройках нового кластера порт на порт старого кластера в /etc/postgresql/9.4/main/
7. Стартуем :

/etc/init.d/postgresql start

Tags: , , ,