Skip to content

Commit cf3c916

Browse files
docs: add Allow Port Through Firewall section to README
1 parent d940e9e commit cf3c916

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,22 @@ systemctl daemon-reload
197197
systemctl start linkora.service
198198
systemctl enable linkora.service
199199
```
200+
### Allow Port Through Firewall
201+
202+
> Cannot reach the server from the Linkora app when the server is running on a local or remote machine.
203+
204+
This is because the firewall blocks it. Make sure you have allowed the port on which the server is running by:
205+
```
206+
sudo firewall-cmd --add-port=PORT_NUMBER/tcp --permanent
207+
sudo firewall-cmd --reload
208+
```
209+
and check if the firewall now allows connecting to it by:
210+
```
211+
sudo firewall-cmd --list-ports
212+
```
213+
You should see a list of ports that the firewall allows for connections, including `PORT_NUMBER/tcp`. Here, `PORT_NUMBER` refers to the port number you've set via the server configuration (default is `45454`).
214+
215+
----
200216

201217
#### Workflow of Linkora, which should make it easier to understand how everything works:
202218

0 commit comments

Comments
 (0)