I'm running bitcoind on one machine and would like to control it from another (using python and the JSON RPC interface).

~/.bitcoin/bitcoin.config on the bitcoind host (192.168.2.4):

rpcuser=xxx
rpcpassword=xxx
gen=1
rcpallowip=127.0.0.1
rcpallowip=192.168.2.6   # This is the other machine
paytxfee=0.01

Now, I start bitcoind -daemon, but my python program fails with

IOError: [Errno socket error] [Errno 111] Connection refused

On the bitcoind host, ps -nlp shows bitcoind listening on 127.0.0.1:8332, and not 0.0.0.0:8332 (which is what I would have expected). Wireshark shows a response of RST,ACK to the TCP connection attempt, which appears to be logical.

What am I missing?

link|improve this question

@Blomkvist I agree. The target host is apparently denying the connection attempt. – Bora May 16 '11 at 13:33
Note: there is a bitcoin stackexchange proposal where that kind of question will be welcome. – Stéphane Gimenez Jul 29 '11 at 15:36
feedback

migrated from superuser.com May 16 '11 at 13:40

This question came from our site for computer enthusiasts and power users.

3 Answers

up vote 5 down vote accepted

Try rpcallowip, instead of rcpallowip :)

link|improve this answer
Doh! [Squashes bug with facepalm...] --- Thank you, that works. – Brent.Longborough May 17 '11 at 9:14
feedback

Are you certain bitcoind is not listening on 0.0.0.0 as well? On a fresh install here it's listening on 0.0.0.0:8333

$ sudo netstat --ip -lpa|grep bitcoin
tcp        0      0 localhost:8332     *:*       LISTEN      2909/bitcoind       
tcp        0      0 *:8333             *:*       LISTEN      2909/bitcoind      

Also, what does nmap from 192.168.2.6 say?

link|improve this answer
As I understand it, 8333 is the peer-to-peer port for the Bitcoin network, while 8332 is the JSON/RPC port. Your netstat looks just like mine. Nmap doesn't detect anything on port 8332. – Brent.Longborough May 16 '11 at 15:26
Hmm, you're quite right. A quick look at the sample code on en.bitcoin.it/wiki/API_reference_%28JSON-RPC%29 gives one the impression that the JSON API isn't intended to be available to anything other than localhost . Deliberate design-decision or coding oversight? Maybe the only answer is to do it via a SOCKS service running on the bitcoin server... – Norky May 16 '11 at 16:22
That doesn't make a lot of sense, given the rpcallowip option in the config. Of course, it might still be work-in-progress. This does work OK on a local machine (127.0.0.1). – Brent.Longborough May 16 '11 at 17:08
feedback

Just had same problem.

Solved by setting

rpcallowip=*

in bitcoin.conf

have a look at https://en.bitcoin.it/wiki/Enabling_SSL_on_original_client_daemon

link|improve this answer
Thanks, Michael. My problem was a simple typo: rCp for rPc – Brent.Longborough Jul 10 '11 at 13:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.