Bitcoin Forum
September 30, 2025, 06:23:35 AM *
News: Latest Bitcoin Core release: 29.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Alternate cryptocurrencies / Announcements (Altcoins) / Re: 【ANN】【PIRL】【PoW ETH Masternode Asic Resistant】 ►► NO PREMINE - NO ICO ◀◀ on: March 08, 2018, 09:43:51 AM
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?
2  Bitcoin / Bitcoin Technical Support / Re: bitcoind json-rpc docker 403 Forbidden on: March 06, 2018, 01:02:13 PM
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

3  Bitcoin / Bitcoin Technical Support / bitcoind json-rpc docker 403 Forbidden on: March 05, 2018, 01:28:58 PM
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.
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!