Advertisement
Guest User

Untitled

a guest
Mar 27th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. /home/myUsername/.bitcoin/bitcoin.conf
  2.  
  3. listen=1
  4. server=1
  5. rpcuser=myUsername
  6. rpcpassword=myPassword
  7. rpcport=8332
  8. rpcconnect=127.0.0.1
  9.  
  10. sudo iptables -A INPUT -p tcp -m tcp --dport 8333 -m comment --comment "Bitcoin Listen" -j ACCEPT
  11.  
  12. sudo iptables -A INPUT -p tcp -m tcp --dport 8332 -m comment --comment "Bitcoin RPC" -j ACCEPT
  13.  
  14. bitcoind -daemon -datadir=/raid1a/bitcoind/
  15.  
  16. Bitcoin server starting
  17.  
  18. bitcoin-cli getinfo
  19.  
  20. error: incorrect rpcuser or rpcpassword (authorization failed)
  21.  
  22. ThreadRPCServer incorrect password attempt from 127.0.0.1:someport
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement