mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 18:03:12 +01:00
20 lines
616 B
Markdown
20 lines
616 B
Markdown
|
# Bisq Seed Node
|
||
|
|
||
|
The distribution ships with a systemd .desktop file. Validate/change the executable/config paths within the shipped `bisq-seednode.service` file and copy/move the file to your systemd directory (something along `/usr/lib/systemd/system/`). Now you can control your *Seed Node* via the usual systemd start/stop commands
|
||
|
|
||
|
```
|
||
|
systemctl start bisq-seednode.service
|
||
|
systemctl stop bisq-seednode.service
|
||
|
```
|
||
|
and
|
||
|
```
|
||
|
systemctl enable bisq-seednode.service
|
||
|
systemctl disable bisq-seednode.service
|
||
|
```
|
||
|
|
||
|
Follow the logs created by the service by inspecting
|
||
|
|
||
|
```
|
||
|
journalctl --unit bisq-seednode --follow
|
||
|
```
|