Created
August 22, 2023 04:01
-
-
Save mariodian/cc2e986aed36d7c1ebc5a0e1558049c7 to your computer and use it in GitHub Desktop.
Monero Wallet RPC Systemd service
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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