You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 3, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,17 +43,17 @@ For the full list of free features that are included in the basic license, see:
43
43
44
44
# Get docker compose files
45
45
You will need these files to deploy Eleasticsearch, Logstash, Kibana, and Beats. So, first SSH in to the master node of the Docker Swarm cluster allocated to running Elastic Stack and clone this repo by following these commands:
46
-
*`alias git='docker run -it --rm --name git -v $PWD:/git -w /git alpine/git'`_(This alias is only required if git is *not* already installed on your machine. This alias will allow you to clone the repo using a git container)_
46
+
*`alias git='docker run -it --rm --name git -u $(id -u ${USER}):$(id -g ${USER}) -v $PWD:/git -w /git alpine/git'`_(This alias is only required if git is *not* already installed on your machine. This alias will allow you to clone the repo using a git container)_
* SSH in to the master node of the Docker Swarm cluster allocated to running Elastic Stack. Deploy Elastic stack by running the following commands:
54
-
*`export ELASTIC_VERSION=6.7.0`
53
+
*`export ELASTIC_VERSION=7.1.1`
55
54
*`export ELASTICSEARCH_USERNAME=elastic`
56
55
*`export ELASTICSEARCH_PASSWORD=changeme`
56
+
*`export INITIAL_MASTER_NODES=node1`_(See Important discovery and cluster formation settings: https://www.elastic.co/guide/en/elasticsearch/reference/current/discovery-settings.html#initial_master_nodes)_
57
57
*`export ELASTICSEARCH_HOST=node1`_(node1 is default value if you are creating VirtualBox with the provided Vagrantfile. Otherwise, change this value to one of your VMs in the swarm cluster)_
*`docker stack deploy --compose-file docker-compose.yml elastic`_(Assuming you have only two VMs, this will deploy a reverse proxy, logstash, Kibana and 2x Elasticsearch instances in Master / data nodes configuration. Please note that Elasticsearch is configured to start as a global service which means elasticsearch data nodes will be scalled out automatically as soon as new VMs are added to the Swarm cluster. Here is an explaination on various Elasticsearch cluster nodes: https://discuss.elastic.co/t/node-types-in-an-elasticsearch-cluster/25488)_
@@ -67,7 +67,7 @@ You will need these files to deploy Eleasticsearch, Logstash, Kibana, and Beats.
67
67
SSH in to the master node of the Docker Swarm cluster allocated to running containerized custom applicatins and beats. Clone this repo and change directory as per the instructions above.
68
68
69
69
Execute the following commands to deploy filebeat and metricbeat:
70
-
*`export ELASTIC_VERSION=6.7.0`
70
+
*`export ELASTIC_VERSION=7.1.1`
71
71
*`export ELASTICSEARCH_USERNAME=elastic`
72
72
*`export ELASTICSEARCH_PASSWORD=changeme`
73
73
*`export ELASTICSEARCH_HOST=node1`_(node1 is default value if you are creating VirtualBox with the provided Vagrantfile. Otherwise, change this value to your Elasticsearch host)_
Copy file name to clipboardExpand all lines: auditbeat-README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,9 @@
1
1
Eagerly waiting for Docker 19.06 release which will bring --privileged flag to Docker Swarm Mode https://github.com/moby/moby/issues/24862#issuecomment-451594187. support for capabilities https://github.com/moby/moby/pull/38380
2
2
3
-
Until capabilities are availale in docker swarm mode, execute te following instructions on each node where auditbeat is required
3
+
Until capabilities are available in docker swarm mode, execute the following instructions on each node where auditbeat is required
0 commit comments