Attention: this is the key used to sign the certificate requests, anyone holding this can sign certificates on your behalf. So keep it in a safe place!
openssl genrsa -des3 -out rootCA.key 4096
{ | |
"id": "jsonrpc2.0", | |
"anyOf": [ | |
{ "$ref": "#/definitions/jsonrpc2Schema" }, | |
{ | |
"type": "array", | |
"description": "batched requests", | |
"items": { "$ref": "#/definitions/jsonrpc2Schema" } | |
} | |
], |
docker rmi $(docker images | awk '/^<none>/ {print $3}') |
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
""" | |
Zabbix SMTP Alert script for gmail. | |
""" | |
import sys | |
import smtplib | |
from email.MIMEText import MIMEText | |
from email.Header import Header |
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
""" | |
Zabbix SMTP Alert script for Yandex. | |
""" | |
import sys | |
import smtplib | |
import datetime | |
from email.MIMEText import MIMEText |
# 1. On a internet-connected device, download the package and its dependencies to a directory | |
mkdir pip-es-curator | |
pip install --ignore-installed -d ./pip-es-curator elasticsearch-curator | |
# 2. Move the directory containing the packages to the offline device | |
# 3. On the offline device, install the package from the transferred directory | |
pip install --no-index --find-links ./pip-es-curator elasticsearch-curator |