Guest User

Untitled

a guest
Nov 9th, 2017
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.12 KB | None | 0 0
  1. root@localhost:/# netstat -nlt
  2. Active Internet connections (only servers)
  3. Proto Recv-Q Send-Q Local Address Foreign Address State
  4. tcp 0 0 0.0.0.0:25672 0.0.0.0:* LISTEN
  5. tcp 0 0 127.0.0.1:3306 0.0.0.0:* LISTEN
  6. tcp 0 0 127.0.0.1:6379 0.0.0.0:* LISTEN
  7. tcp 0 0 0.0.0.0:8080 0.0.0.0:* LISTEN
  8. tcp 0 0 0.0.0.0:4369 0.0.0.0:* LISTEN
  9. tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN
  10. tcp 0 0 0.0.0.0:15672 0.0.0.0:* LISTEN
  11. tcp 0 0 127.0.0.1:42009 0.0.0.0:* LISTEN
  12. tcp 0 0 127.0.0.1:38907 0.0.0.0:* LISTEN
  13. tcp 0 0 127.0.0.1:18332 0.0.0.0:* LISTEN
  14. tcp 0 0 0.0.0.0:18333 0.0.0.0:* LISTEN
  15. tcp6 0 0 :::5672 :::* LISTEN
  16. tcp6 0 0 :::80 :::* LISTEN
  17. tcp6 0 0 :::4369 :::* LISTEN
  18. tcp6 0 0 :::22 :::* LISTEN
  19. tcp6 0 0 ::1:18332 :::* LISTEN
  20. tcp6 0 0 :::18333 :::* LISTEN
  21.  
  22.  
  23. bitcoin.conf
  24.  
  25. server=1
  26. daemon=1
  27.  
  28. # If run on the test network instead of the real bitcoin network
  29. testnet=1
  30.  
  31. # You must set rpcuser and rpcpassword to secure the JSON-RPC api
  32. # Please make rpcpassword to something secure, `5gKAgrJv8CQr2CGUhjVbBFLSj29HnE6YGXvfykHJzS3k` for example.
  33. # Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332)
  34. rpcuser=exchange
  35. rpcpassword=ddd545a1142f7fd3e167cd60e60d0a67
  36. rpcport=18332
  37.  
  38. # Notify when receiving coins
  39. walletnotify=/usr/local/sbin/rabbitmqadmin publish routing_key=peatio.deposit.coin payload='{"txid":"%s", "channel_key":"satoshi"}'
  40.  
  41. #for small VPS
  42. dbcache=50
  43. maxconnections=4
  44. rpcthreads=2
Add Comment
Please, Sign In to add comment