1

I have a monerod daemon running on a PC (IP 192.168.1.150) and a wallet running on another PC. Sometimes all works, sometimes not and shows:

Error: wallet failed to connect to daemon

I use these commands to launch the programs:

./monerod --rpc-bind-ip 192.168.1.150 --confirm-external-bind

./monero-wallet-cli --daemon-address 192.168.1.150 --wallet-file walletname

So, is there a way to check the connection between daemon and wallet?

cialu
  • 1,661
  • 13
  • 44

2 Answers2

2

With the new 0.13.0.4 Beryllium Bullet version of the daemon and CLI software, all is working fine under Linux. No more issues.

cialu
  • 1,661
  • 13
  • 44
0

Try with this command:

./monero-wallet-cli --daemon-host 192.168.1.150 --wallet-file walletname

This seemed to work for me.

galoget
  • 161
  • 6
Dave
  • 504
  • 1
  • 3
  • 8