Headless Bisq - GUIDE.md

This commit is contained in:
Ape Mithrandir 2023-03-18 04:32:20 +00:00
parent c7c093123d
commit e0ff5308dc
No known key found for this signature in database
GPG Key ID: 53BBE9DC70260E58

View File

@ -112,10 +112,10 @@ xpra list
Now head exit from your headless client and get back into terminal for your host and run this:
```
### Reminder the :10 must match the number used in your headless client above
xpra attach ssh:username@{{headless-ip}:10
xpra attach ssh:username@{headless-ip}:10
```
This should hopefully make your Bisq instance pop up on the host machine in all it's glory. You can now create an offer and then keep that offer running on the server and shudown your host machine. Just use `CTRL+C` in the terminal window where you ran `xpra attach ssh:username@{{headless-ip}:100`. Happy trading!
This should hopefully make your Bisq instance pop up on the host machine in all it's glory. You can now create an offer and then keep that offer running on the server and shudown your host machine. Just use `CTRL+C` in the terminal window where you ran `xpra attach ssh:username@{headless-ip}:100`. Happy trading!
### Troubleshooting
#### XPRA folder Permissions
@ -134,7 +134,7 @@ Small quirks to be aware of, you won't easily be able to copy and paste from the
Bisq doesn't especially like if you run multiple instances of the same data directory, so if for some reason you want to spot running the server instance and go back to your Laptop instance I would recommend the following:
```bash
### Open your XPRA instance on your host
xpra attach ssh:username@{{headless-ip}:10
xpra attach ssh:username@{headless-ip}:10
### Now rather than CTRL+C escape you must actually shutdown the GUI properly first
### then CTRL+C escape from the xpra attachment.
### Now enter your server:
@ -163,5 +163,5 @@ ssh username@{headless-ip}
xpra start :10 --start=Bisq
xpra list
exit
xpra attach ssh:username@{{headless-ip}:10
xpra attach ssh:username@{headless-ip}:10
```