Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update systemd.md #1639

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion nodes/systemd.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,12 +126,13 @@ User=$USER
ExecStart=$(which celestia) bridge start
Restart=on-failure
RestartSec=3
LimitNOFILE=1400000
LimitNOFILE=65535

[Install]
WantedBy=multi-user.target
EOF
```
Note: You can set LimitNOFILE up to 1400000. Be cautious when increasing file descriptor limits. Setting this value too high might affect system performance. [Ensure the value is appropriate for your system's capabilities](https://docs.celestia.org/nodes/celestia-node-troubleshooting#error-too-many-open-files).
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Improve clarity, grammar, and formatting of the note.

The note can be improved for better clarity and grammar. Additionally, the bare URL should be formatted properly.

Apply this diff to improve the note:

- Note: You can set LimitNOFILE up to 1400000. Be cautious when increasing file descriptor limits. Setting this value too high might affect system performance. [Ensure the value is appropriate for your system's capabilities](https://docs.celestia.org/nodes/celestia-node-troubleshooting#error-too-many-open-files).
+ **Note:** Be cautious when increasing file descriptor limits. Setting this value too high might affect system performance. Ensure the value is appropriate for your system's capabilities. For more information, refer to the [Celestia Node Troubleshooting Guide](https://docs.celestia.org/nodes/celestia-node-troubleshooting#error-too-many-open-files).
Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
Note: You can set LimitNOFILE up to 1400000. Be cautious when increasing file descriptor limits. Setting this value too high might affect system performance. [Ensure the value is appropriate for your system's capabilities](https://docs.celestia.org/nodes/celestia-node-troubleshooting#error-too-many-open-files).
**Note:** Be cautious when increasing file descriptor limits. Setting this value too high might affect system performance. Ensure the value is appropriate for your system's capabilities. For more information, refer to the [Celestia Node Troubleshooting Guide](https://docs.celestia.org/nodes/celestia-node-troubleshooting#error-too-many-open-files).
Tools
LanguageTool

[grammar] ~135-~135: The verb form ‘value’ does not seem to be suitable in this context.
Context: ...ng file descriptor limits. Setting this value too high might affect system performanc...

(THIS_VBP_DT)


If the file was created successfully you will be able to see its content:

Expand Down