VyOS Network configuration
I like to have a separate network for testing purposes. We could call it my playground network. To achieve this, I use VyOS on my ESX server. I run this on my ESX server...
No questions asked
I like to have a separate network for testing purposes. We could call it my playground network. To achieve this, I use VyOS on my ESX server. I run this on my ESX server...
In this really short article you can find the few commands you need to complete installing Docker on your Debian server. curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add – sudo -i apt install apt-transport-https...
The Ansible playbook below can be used to quickly install a Grafana server. — – hosts: GrafanaServers tasks: – name: Install some packages, in this case apt-transport-https apt: name: “{{ packages }}” update_cache: yes...
The Ansible playbook below can be used to quickly install a Kibana server. — – hosts: KibanaServers tasks: – name: Install some packages, in this case Java and apt-transport-https apt: name: “{{ packages }}”...
The YAML file below can be used to run an Elasticsearch cluster. cluster.name: Windt-ES #define node 1, 2 and 3 as master-eligible: node.master: false #define nodes 4 and 5 as data nodes: node.data: true...
The Ansible playbook below can be used to quickly install an Elasticsearch server. An Elasticsearch server is an important part of your ELK stack. You can store all kinds of items in it. In...
Here we’ll describe how to add a repository via Ansible. – name: Add Elasticsearch repository into sources list apt_repository: repo: deb https://artifacts.elastic.co/packages/6.x/apt stable main state: present The example above...