четверг, 28 мая 2015 г.

Проверка SSL и ключа

Чтобы проверить соответствие сертификата ключу (проверить ssl и ключ) в консоли вводим:
# openssl x509 -noout -modulus -in /путь/до/сертификата/cert.crt | openssl md5
# openssl rsa -noout -modulus -in
/путь/до/ключа/my_key.key | openssl md5

         # openssl rsa -check -noout -in myserver.key

If it doesn't say 'RSA key ok', it isn't OK!" 

Если совпадает хеш MD5 — значит сертификат соответсвует ключу.
Так же есть удобный онлайн сервис проверки ssl и ключа:
https://www.sslshopper.com/certificate-key-matcher.html

четверг, 14 мая 2015 г.

Cancel a running raid-check on linux md-raid

If you have a weekly cron job which runs raid-check and you want to stop it from running again just comment out the relevant line in this file..

/etc/cron.d/raid-check

If the job is already running and you want to kill it just do this..

echo "idle" >/sys/block/md123/md/sync_action

where "md123" is whatever mdraid you have.

When running that file will contain "check" instead of "idle".