Skip to content

Instantly share code, notes, and snippets.

@mariodian
Created August 22, 2023 04:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mariodian/cc2e986aed36d7c1ebc5a0e1558049c7 to your computer and use it in GitHub Desktop.
Save mariodian/cc2e986aed36d7c1ebc5a0e1558049c7 to your computer and use it in GitHub Desktop.
Monero Wallet RPC Systemd service
[Unit]
Description=Monero Wallet RPC
After=monerod.service
[Service]
User=satoshi
Group=satoshi
Type=simple
ExecStart=/usr/local/bin/monero-wallet-rpc --rpc-bind-ip=127.0.0.1 --disable-rpc-login \
--rpc-bind-port=18082 --non-interactive --trusted-daemon \
--daemon-address=0.0.0.0:18081 --daemon-login <monero node RPC username>:<monero node RPC password> \
--wallet-file=/home/satoshi/.bitmonero/wallets/wallet \
--password-file=/home/satoshi/.bitmonero/wallets/password \
--tx-notify="/usr/bin/curl -X GET http://127.0.0.1:23001/monerolikedaemoncallback/tx?cryptoCode=xmr&hash=%s"
Restart=always
[Install]
WantedBy=multi-user.target
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment