Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/austinenv/graylog-stack
A Docker Compose stack for Graylog: MongoDB, Graylog Open Core, and a DataNode cluster.
https://github.com/austinenv/graylog-stack
Last synced: about 2 months ago
JSON representation
A Docker Compose stack for Graylog: MongoDB, Graylog Open Core, and a DataNode cluster.
- Host: GitHub
- URL: https://github.com/austinenv/graylog-stack
- Owner: austinenv
- Created: 2024-11-06T04:35:37.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-12-01T20:47:30.000Z (about 2 months ago)
- Last Synced: 2024-12-01T21:33:02.752Z (about 2 months ago)
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
You may have an error message for the Datanode that the `vm.max_map_count` value is too low. This setting controls the maximum number of memory map areas a process may have. For Graylog to function properly, this value needs to be at least `262144`.
To fix this issue, you need to increase the `vm.max_map_count` value on your host system. You can do this by running the following command on your Linux host:
```sh
sudo sysctl -w vm.max_map_count=262144
```To make this change permanent, you can add the following line to your `sysctl.conf` file:
```sh
vm.max_map_count=262144
```After adding the line, you can apply the changes without restarting the machine by running:
```sh
sudo sysctl -p
```
This will ensure that the `vm.max_map_count` value is set correctly both immediately and after a system reboot.