1
In my lnd.conf file I have the following settings:
debuglevel=info
listen=192.168.100.134
externalip=186.4.235.84
alias=MyNodeAlias
color=#000000
maxpendingchannels=5
bitcoin.mainnet=1
bitcoin.active=1
bitcoin.node=bitcoind
bitcoind.rpcuser=bitcoind_rpc_user_string
bitcoind.rpcpass=bitcoind_rpc_password_string
bitcoind.zmqpubrawblock=tcp://127.0.0.1:18501
bitcoind.zmqpubrawtx=tcp://127.0.0.1:18502
What is rpcuser and rpcpass? which values should I use? Also, what is zmqpubrawblock and zmqpubrawtx?
4Note that the newer
rpcauthlines are preferred overrpcuser/rpcpass. – Pieter Wuille – 2019-07-03T01:24:27.7431The bitcoin conf should be in
~/.bitcoin/bitcoin.conf. Also, I think it should be noted that you don't usually need any of this configuration if lnd is run as the same user as bitcoind, since lnd just reads the secrets from bitcoin.conf, while bitcoind should autogenerate auth credentials. – stefanwouldgo – 2019-07-03T07:56:21.997