You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+18-2Lines changed: 18 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -60,7 +60,7 @@ will be prompted to provide the required values, which will be saved locally.
60
60
```
61
61
sqlite:path-to-db
62
62
```
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`
64
64
- `databaseUser`: The username of the database you want to connect to.
65
65
- If you are using SQLite, leave this blank or press Enter when the setup prompts for it.
66
66
- `databasePassword`: The password of the database you want to connect to.
@@ -150,7 +150,7 @@ authentication details.
150
150
- **Real-Time Updates**: Events on the server are sent to clients via socket, ensuring data is always up-to-date.
151
151
- This server implements the LWW (Last-Write-Wins) mechanism, where the latest client update takes effect.
152
152
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).
154
154
155
155
### Important Notes
156
156
@@ -197,6 +197,22 @@ systemctl daemon-reload
197
197
systemctl start linkora.service
198
198
systemctl enable linkora.service
199
199
```
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:
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
+
----
200
216
201
217
#### Workflow of Linkora, which should make it easier to understand how everything works:
0 commit comments