Increase vm map limit recommendation (#14892)

Give some more buffer from 400k
This commit is contained in:
sakridge
2021-01-29 09:01:01 -08:00
committed by GitHub
parent 0ce08274f9
commit 84e52b6065
2 changed files with 2 additions and 2 deletions

View File

@ -83,7 +83,7 @@ sudo sysctl -p /etc/sysctl.d/20-solana-udp-buffers.conf
```bash
sudo bash -c "cat >/etc/sysctl.d/20-solana-mmaps.conf <<EOF
# Increase memory mapped files limit
vm.max_map_count = 500000
vm.max_map_count = 700000
EOF"
```
```bash