Skip to content

Commit a8608e5

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 6cc12f0 + cc731f4 commit a8608e5

2 files changed

Lines changed: 21 additions & 2 deletions

File tree

.github/FUNDING.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
ko_fi: sakethpathike
2+
liberapay: sakethpathike
3+
custom: ['http://paypal.me/sakethpathike']

README.md

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ will be prompted to provide the required values, which will be saved locally.
6060
```
6161
sqlite:path-to-db
6262
```
63-
`path-to-db` should look something like `sqlite:/home/saketh/Documents/sqlite/databaseFileName`
63+
`path-to-db` should look something like `/home/saketh/Documents/sqlite/databaseFileName`
6464
- `databaseUser`: The username of the database you want to connect to.
6565
- If you are using SQLite, leave this blank or press Enter when the setup prompts for it.
6666
- `databasePassword`: The password of the database you want to connect to.
@@ -150,7 +150,7 @@ authentication details.
150150
- **Real-Time Updates**: Events on the server are sent to clients via socket, ensuring data is always up-to-date.
151151
- This server implements the LWW (Last-Write-Wins) mechanism, where the latest client update takes effect.
152152
153-
To learn how the linkora app and this sync-server make syncing seamless, check out [this write-up](https://sakethpathike.github.io/posts/synchronization-in-linkora/).
153+
To learn how the linkora app and this sync-server make syncing seamless, check out [this write-up](https://sakethpathike.github.io/blog/synchronization-in-linkora).
154154
155155
### Important Notes
156156
@@ -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)