I know that I can run the Monero RPC wallet in the background on Ubuntu by adding a & to the command or by using setsid.
But that would result in me having to use the following code on the command line:
./monero-wallet-rpc --daemon-address node.moneroworld.com:18089 --rpc-bind-port 18085 --wallet-file MyMonero --disable-rpc-login --password MYPASSWORD &
and thus, my wallet password is viewable using htop or other tools. Also, it’s visible in the command line history.
Do you have a better solution?
Thank you!