Search content
Sort by

Showing 3 of 3 results by Hekica
Post
Topic
Board Announcements (Altcoins)
Re: 【ANN】【PIRL】【PoW ETH Masternode Asic Resistant】 ►► NO PREMINE - NO ICO ◀◀
by
Hekica
on 08/03/2018, 09:43:51 UTC
If Pirl is "From people, to people" why are they running on private git repo?

Shouldn't everything be public then?
What are they actually trying to hide/protect?
Post
Topic
Board Bitcoin Technical Support
Re: bitcoind json-rpc docker 403 Forbidden
by
Hekica
on 06/03/2018, 13:02:13 UTC
Tried but getting:

Quote
Caused by: org.apache.http.NoHttpResponseException: 127.0.0.1:8332 failed to respond

One interesting thing in docker logs is

Quote
bitcoind_1  | 2018-03-06 12:57:42 Binding RPC on address ::1 port 8332 failed.

But that happens for any port not just that one.

And this one, connected to the container I tried to read the config:

Quote
root@990e2bbe3ebc:/# cat /home/bitcoin/.bitcoin/bitcoin.conf
cat: /home/bitcoin/.bitcoin/bitcoin.conf: No such file or directory

But in docker logs it is claiming it is reading it.

Quote
bitcoind_1  | 2018-03-06 12:57:42 Using config file /home/bitcoin/.bitcoin/bitcoin.conf

Post
Topic
Board Bitcoin Technical Support
Topic OP
bitcoind json-rpc docker 403 Forbidden
by
Hekica
on 05/03/2018, 13:28:58 UTC
Hi guys,

have read all possible examples on the internet but still cannot connect to btc node from Java.

I'm using btcd-cli4j but have tried all other rpc libs as well, result is the same. This is the command:

BtcdClient client = new VerboseBtcdClientImpl(httpProvider, "127.0.0.1", 8332, "foo", "bar"); 
This is the docker image:

Quote
version: '3.3'

services:

bitcoind:
image: seegno/bitcoind:latest
command:
  -printtoconsole
  -regtest=1
  -rest
  -rpcallowip=172.18.0.2
  -rpcuser=foo
  -rpcpassword=bar
  -rpcport=8332
  -server
  -logips
  -debug=rpc
ports:
  - 8332:8332
Have tried couple of different docker images as well. Always the same: Exception in thread "main"

HttpLayerException(super=CommunicationException
(super=com.neemre.btcdcli4j.core.http.HttpLayerException: Error #1003001: The server responded with a non-OK (4xx) HTTP status code. Status line: HTTP/1.1 403 Forbidden, code=1003001))
My suspicion was around rpcallowip but don't know how to set correctly. This one is set by going into the docker container and executing hostanme -i to see the ip address. Setting that one in config and restarting the container.