Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fastlorenzo/redelk-ansible
Ansible roles to deploy RedELK
https://github.com/fastlorenzo/redelk-ansible
Last synced: about 1 month ago
JSON representation
Ansible roles to deploy RedELK
- Host: GitHub
- URL: https://github.com/fastlorenzo/redelk-ansible
- Owner: fastlorenzo
- License: bsd-3-clause
- Created: 2020-09-25T18:30:37.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2023-02-15T13:31:02.000Z (almost 2 years ago)
- Last Synced: 2024-03-21T17:20:42.157Z (9 months ago)
- Language: Jinja
- Homepage:
- Size: 8.02 MB
- Stars: 11
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Ansible roles to deploy RedELK
This repository contains multiple Ansible playbook allowing to deploy [RedELK](https://github.com/outflanknl/RedELK/).
All credits goes to the authors and contributors of RedELK.
The roles can be found on the following repositories:
- [redelk-server](https://github.com/fastlorenzo/redelk-server)
- [redelk-client](https://github.com/fastlorenzo/redelk-client)## Install requirements
```bash
ansible-galaxy install -r requirements.yml
ansible-galaxy collection install community.crypto
ansible-galaxy collection install community.general
```## Deploy RedELK
```bash
ansible-playbook -i inventory install-redelk.yml -K
```## Remove systemd-resolved stub listener (to free port 53 for DNS redirectors)
```bash
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
```