Skip to content

Commit

Permalink
Update README.md with Open File Limit recommendation
Browse files Browse the repository at this point in the history
  • Loading branch information
zkxuerb authored Oct 15, 2024
1 parent d8f4fd8 commit 3a44561
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,16 @@ cargo install --locked --path .

Please ensure ports `4130/tcp` and `3030/tcp` are open on your router and OS firewall.

**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 3a44561

Please sign in to comment.