Skip to content

Commit

Permalink
Merge pull request #3414 from AleoNet/docs/add-open-file-limit
Browse files Browse the repository at this point in the history
adds open file limit recommendation
  • Loading branch information
zosorock authored Oct 26, 2024
2 parents ba2ce9a + abcd950 commit 63464a5
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,15 @@ Please ensure ports `4130/tcp` and `3030/tcp` are open on your router and OS fir
| 9000/tcp | TCP | Allow | Internal VPC or VPN | Metrics export, should only be open within an internal VPC or VPN |
| 9090/tcp | TCP | Allow | Internal VPC or VPN | Prometheus metrics, should only be open within an internal VPC or VPN |

**Note:** Ensure that your open file limit is set to 16,384 or above.
For the recommended setting run:
```
# Increase the open file limit for the current user (replace <username> with your username)
echo "<username> - nofile 65536" | sudo tee -a /etc/security/limits.conf
# Increase the default system open file limit
sudo bash -c 'echo "DefaultLimitNOFILE=65536" >> /etc/systemd/system.conf'
```

## 3. Run an Aleo Node

## 3.1 Run an Aleo Client
Expand Down

0 comments on commit 63464a5

Please sign in to comment.