Hi i tried to run grin on my ubuntu vps
how do i keep my receiver open or is there any daemon ?
everytime i closed my ssh session my grin closed
i run this command on 2 console
./grin
./grin-wallet -e listen
Hi i tried to run grin on my ubuntu vps
how do i keep my receiver open or is there any daemon ?
everytime i closed my ssh session my grin closed
i run this command on 2 console
./grin
./grin-wallet -e listen
Yes, we need the wallet process running in background.
In command line console, you could use ‘screen’ or ‘tmux’ to make processes keep running even you close ssh/windows
For example:
tmux new -s wallet
control + b then press d to dettach
tmux attach -t wallet
control + b then press s to switch sessions.
Hope it helps.