svci/doc/readme-firewall.md

15 lines
306 B
Markdown
Raw Normal View History

2022-11-28 13:56:34 +00:00
# Firewall Notes
## RedHat, CentOS, Rocky & Alma Linux
And any other Linux distribution using *firewalld*.
All commands should be run as root or through sudo.
### Allow remote access to Grafana on port 3000
```shell
firewall-cmd --zone=public --add-port=3000/tcp --permanent
firewall-cmd --reload
```