Setting up a LND node

From lightningwiki.net
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
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)