Difference between revisions of "Setting up a LND node"

From lightningwiki.net
Jump to navigation Jump to search
m (TODO->HELP)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
{{TODO|This page is not yet very helpful ;). Please help and add instructions!}}
{{HELP|This page is not yet very helpful ;) Please help and add instructions!}}


= Using Docker =
= Using Docker =
Line 6: Line 6:
= Using bitcoind =
= Using bitcoind =
== How to compile / set up bitcoind ==
== How to compile / set up bitcoind ==
Tho can put info here?
* [https://en.bitcoin.it/wiki/Bitcoind Wiki on bitcoind]
* [https://github.com/bitcoin/bitcoin Github, sources and binaries of bitcoind]


== Connecting lnd ==
== Connecting lnd ==

Latest revision as of 14:11, 28 February 2019

Error creating thumbnail: File missing
Please help by adding more information. Suggestion:
This page is not yet very helpful ;) Please help and add instructions!

Using Docker

See https://github.com/lightningnetwork/lnd/tree/master/docker

Using bitcoind

How to compile / set up bitcoind

Connecting lnd

lnd \
  --maxpendingchannels=30 \
  --alias="MiltonPusser.lightningnode.eu" \
  --color=#381793 \
  --bitcoin.active \
  --bitcoin.mainnet \
  --debuglevel=info \
  --restlisten=10.0.60.18:8080 \
  --bitcoin.node=bitcoind \
  --bitcoind.rpcuser=rpc748573945 \
  --bitcoind.rpcpass=nope \
  --bitcoind.zmqpubrawblock=tcp://127.0.0.1:28332 \
  --bitcoind.zmqpubrawtx=tcp://127.0.0.1:28333 \
  --externalip=82.197.218.97 \

Managing your node

See Node Management

Resources

Networking guide by Vegard (LND)