Consul Basic Setup: различия между версиями
Материал из noname.com.ua
Перейти к навигацииПерейти к поискуSirmax (обсуждение | вклад) |
Sirmax (обсуждение | вклад) |
||
Строка 14: | Строка 14: | ||
</PRE> |
</PRE> |
||
+ | |||
− | + | =Базовая настройка= |
|
+ | |||
+ | ==Unit немного исправлен== |
||
+ | <PRE> |
||
+ | # systemctl cat consul.service |
||
+ | </PRE> |
||
+ | |||
+ | <PRE> |
||
+ | [Unit] |
||
+ | Description="HashiCorp Consul - A service mesh solution" |
||
+ | Documentation=https://www.consul.io/ |
||
+ | Requires=network-online.target |
||
+ | After=network-online.target |
||
+ | ConditionFileNotEmpty=/etc/consul.d/consul-server.json |
||
+ | |||
+ | [Service] |
||
+ | EnvironmentFile=-/etc/consul.d/consul.env |
||
+ | User=consul |
||
+ | Group=consul |
||
+ | ExecStart=/usr/bin/consul agent -config-dir=/etc/consul.d/ |
||
+ | ExecReload=/bin/kill --signal HUP $MAINPID |
||
+ | KillMode=process |
||
+ | KillSignal=SIGTERM |
||
+ | Restart=on-failure |
||
+ | LimitNOFILE=65536 |
||
+ | |||
+ | [Install] |
||
+ | WantedBy=multi-user.target |
||
+ | </PRE> |
Версия 13:36, 4 февраля 2022
Базовая настройка Hashicorp Consul
- Для использования в качестве бекенда для Hashicorp Vault)
- Очень базовая однонодовая конфигурация
Установка
curl -fsSL https://apt.releases.hashicorp.com/gpg | sudo apt-key add - sudo apt-add-repository "deb [arch=amd64] https://apt.releases.hashicorp.com $(lsb_release -cs) main" sudo apt-get update && sudo apt-get install consul
Базовая настройка
Unit немного исправлен
# systemctl cat consul.service
[Unit] Description="HashiCorp Consul - A service mesh solution" Documentation=https://www.consul.io/ Requires=network-online.target After=network-online.target ConditionFileNotEmpty=/etc/consul.d/consul-server.json [Service] EnvironmentFile=-/etc/consul.d/consul.env User=consul Group=consul ExecStart=/usr/bin/consul agent -config-dir=/etc/consul.d/ ExecReload=/bin/kill --signal HUP $MAINPID KillMode=process KillSignal=SIGTERM Restart=on-failure LimitNOFILE=65536 [Install] WantedBy=multi-user.target