Skip to content

fastlorenzo/redelk-ansible

Folders and files

NameName
Last commit message
Last commit date

Latest commit

bdc8a97 · Feb 15, 2023

History

24 Commits
Jan 18, 2023
Feb 15, 2023
Nov 16, 2022
Feb 15, 2023
Jan 18, 2023
Nov 16, 2022
Jan 18, 2023
Sep 25, 2020
Nov 16, 2022
Jan 18, 2023
Sep 25, 2020
Feb 15, 2023
Nov 16, 2022
Nov 16, 2022
Sep 25, 2020

Repository files navigation

Ansible roles to deploy RedELK

This repository contains multiple Ansible playbook allowing to deploy RedELK.

All credits goes to the authors and contributors of RedELK.

The roles can be found on the following repositories:

Install requirements

ansible-galaxy install -r requirements.yml
ansible-galaxy collection install community.crypto
ansible-galaxy collection install community.general

Deploy RedELK

ansible-playbook -i inventory install-redelk.yml -K

Remove systemd-resolved stub listener (to free port 53 for DNS redirectors)

sed -i 's/#DNSStubListener=yes/DNSStubListener=no/g /etc/systemd/resolved.conf'
sudo rm /etc/resolv.conf
sudo ln -s /run/systemd/resolve/resolv.conf /etc/
sudo systemctl restart systemd-resolved.service