The one method to connect with friends is thru a DGRAM unix socket?

0
58


I am operating an experimental setup. I’ve Ubuntu on my desktop pc with a USB hub related and a 1TB ssd sata drive mounted to it at /mnt/d1

I am utilizing a second docker occasion

dockerd -H unix:///var/run/docker1.sock -p /var/run/docker1.pid --ip-masq=true --bridge=docker1 --data-root=/mnt/d1/docker-data --exec-root=/mnt/d1/docker-exec
dockerd -H unix:///var/run/docker1.sock run -itd --network=host --privileged --hostname take a look at --user root --name take a look at 20:newest
dockerd -H unix:///var/run/docker1.sock exec --user root -it 18 /bin/bash
# put in bitcoind right here

Subsequent I arrange my customized datadir in /dwelling/BTC the place I write in my bitcoin.conf the traditional bitcoin port and rpc port

rpcuser=redacted
rpcpassword=redacted
port=8333
rpcport=8332
hear=1
datadir=/dwelling/BTC

Once I begin Bitcoind like bitcoind -datadir=/dwelling/BTC it’s unable to get any connections and I see in debug.log

Certain to [::]:11235
Certain to 0.0.0.0:11235

Lengthy-story-short; I attempted placing the port out of vary 999999999999999
then ran bitcoind once more

Certain to [::]:25177
Certain to 0.0.0.0:25177

So now it has connections and will get blocks however I’m confused as to what occurred.

netstat -anp | grep "25177"
  unix 3 [ ] DGRAM CONNECTED 25177 1/init
netstat -anp | grep "DGRAM" | grep "1/init"
unix  4      [ ]         DGRAM      CONNECTED     16138    1/init               /run/systemd/notify
unix  2      [ ]         DGRAM                    22988    1/init               /run/systemd/journal/syslog
unix  24     [ ]         DGRAM      CONNECTED     22997    1/init               /run/systemd/journal/dev-log
unix  8      [ ]         DGRAM      CONNECTED     22999    1/init               /run/systemd/journal/socket
unix  3      [ ]         DGRAM      CONNECTED     33808    1/init               
unix  3      [ ]         DGRAM      CONNECTED     25176    1/init               
unix  3      [ ]         DGRAM      CONNECTED     16139    1/init               
unix  3      [ ]         DGRAM      CONNECTED     16140    1/init               
unix  3      [ ]         DGRAM      CONNECTED     25177    1/init               
unix  3      [ ]         DGRAM      CONNECTED     33807    1/init               
unix  2      [ ]         DGRAM      CONNECTED     25779    1/init

Someway it related by way of! how would I reproduce considered one of these DGRAM unix sockets to let it by way of on port 8333?

LEAVE A REPLY

Please enter your comment!
Please enter your name here