Container for LND "not found", and LND-related apps fail to connect. Help!

First, a huge THANKS to people like @DarthCoin and @Hakuna and everyone else who volunteers time here, to help us faceless nodlers. Hoping a kind soul will try helping me solve:

--------------- PROBLEM:
After working successfully for 16 months, the container for my LND became lost / horked:

umbrel@umbrel:~ $ /home/umbrel/lncli
Error: No such container: lnd

--------------- SCOPE:
The apps which are unrelated to LND (Bitcoin Node, mempool, etc) are ok:

umbrel@umbrel:~ $ /home/umbrel/umbrel/scripts/app compose bitcoin exec bitcoind bitcoin-cli getblockcount
753717

Installing and uninstalling other apps causes no errors.

--------------- SYMPTOMS:

LND-related apps ok since April 2021, but either my upgrade to 0.5.0, or a recent hard reset, causes apps to consistently throw these errors:

Ride The Lightning (http://umbrel.local:3001/rtl/) throws:
Error 500
Error: connect ehostunreach 10.21.21.9:8080

ThunderHub (http://umbrel.local:3000/login) throws:
UnableToConnectToThisNode

Lightning Node (http://umbrel.local:2101/) throws:
The purple progress line is stuck at about 55%

BlueWallet Lightning (http://umbrel.local:3008) throws:
There was an error connecting to BlueWallet Lightning. Error code: ECONNREFUSED

--------------- HARDWARE:
Raspberry Pi
SSD: 594GB of 983GB
RAM: 2.8 GB of 4 GB
CPU: Normal temperature
Ethernet (not WiFi)

--------------- OS:
Umbrel: 0.5.1-build-7ab0914

umbrel@umbrel:~ $ uname -a
Linux umbrel 5.10.103-v8+ #1529 SMP PREEMPT Tue Mar 8 12:26:46 GMT 2022 aarch64 GNU/Linux

--------------- LND:
umbrel@umbrel:~ $ ps -ef | grep lnd
root 1171 1159 0 19:52 ? 00:00:00 fswatch -0 --event Updated /home/umbrel/umbrel/scripts/backup/…/…/app-data/lightning/data/lnd/data/chain/bitcoin/mainnet/channel.backup
umbrel 4433 4395 0 19:52 ? 00:00:02 boltzd --lnd.host=“10.21.21.9” --lnd.macaroon="/lnd/data/chain/bitcoin/mainnet/admin.macaroon" --lnd.certificate="/ln/tls.cert" --rpc.rest.host=“10.21.21.63” --rpc.rest.port=“9003”
umbrel 12533 12513 6 20:23 ? 00:00:00 /sbin/docker-init – docker-entrypoint.sh /bin/sh -c cp $LND_CERT_FILE /lndhub/ && cp $LND_ADMIN_MACAROON_FILE /lndhub/ && cd /lndhub && npm start

LND does see the network:
umbrel@umbrel:~ $ /home/umbrel/umbrel/scripts/app compose lightning exec lnd lncli getnetworkinfo
{
“graph_diameter”: 12,
“avg_out_degree”: 5.708576881784564,
“max_out_degree”: 143,
“num_nodes”: 16766,
“num_channels”: 47855,
“total_network_capacity”: “127320983370”,
“avg_channel_size”: 2660557.587921847,
“min_channel_size”: “1050”,
“max_channel_size”: “500000000”,
“median_channel_size_sat”: “1000000”,
“num_zombie_chans”: “127199”
}

…and LND does see my 42 channels:
umbrel@umbrel:~ $ /home/umbrel/umbrel/scripts/app compose lightning exec lnd lncli listchannels | grep chan_id | wc -l
42

…but calling the LND container fails:

umbrel@umbrel:~ $ /home/umbrel/lncli
Error: No such container: lnd

------------------------- DOCKER:
umbrel@umbrel:~ $ docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
3b8c642ed14f getumbrel/umbrel-bitcoin:v0.3.0 “docker-entrypoint.s…” 25 minutes ago Up 25 minutes 3006/tcp bitcoin_server_1
bb4d6584e3af bluewalletorganization/lndhub:v1.4.1 “docker-entrypoint.s…” 25 minutes ago Up 21 minutes 3000/tcp bluewallet_lndhub_1
e21cabdda1f7 getumbrel/umbrel-electrs:v1.0.2 “docker-entrypoint.s…” 25 minutes ago Up 25 minutes 3006/tcp electrs_app_1
5317fb2da9c2 lncm/bitcoind:v23.0 “bitcoind -chain=mai…” 25 minutes ago Up 25 minutes 8080/tcp, 18332-18333/tcp, 18443-18444/tcp, 28332-28333/tcp, 0.0.0.0:8332-8333->8332-8333/tcp, :::8332-8333->8332-8333/tcp bitcoin_bitcoind_1
497754a60e2c getumbrel/app-proxy:v0.5.1 “docker-entrypoint.s…” 25 minutes ago Up 25 minutes 0.0.0.0:3004->3004/tcp, :::3004->3004/tcp lightning-terminal_app_proxy_1
47e85f8bec4a lncm/tor:0.4.7.8 “tor” 25 minutes ago Up 25 minutes 9050-9051/tcp, 29050-29051/tcp bitcoin_tor_server_1
afbe970b0eb5 lncm/tor:0.4.7.8 “tor” 25 minutes ago Up 25 minutes 9050-9051/tcp, 29050-29051/tcp lightning-terminal_tor_server_1
b122c3541b86 lightninglabs/lightning-terminal:v0.7.1-alpha “litd --uipassword_e…” 25 minutes ago Up 21 minutes 8443/tcp, 9735/tcp, 10009/tcp lightning-terminal_web_1
9247a2edf8c9 getumbrel/app-proxy:v0.5.1 “docker-entrypoint.s…” 25 minutes ago Up 25 minutes 0.0.0.0:2100->2100/tcp, :::2100->2100/tcp bitcoin_app_proxy_1
40322d671ac5 lncm/tor:0.4.7.8 “tor” 25 minutes ago Up 25 minutes 9050-9051/tcp, 29050-29051/tcp electrs_tor_server_1
dee7ef9e5a79 lncm/tor:0.4.7.8 “tor” 25 minutes ago Up 25 minutes 9050-9051/tcp, 29050-29051/tcp ride-the-lightning_tor_server_1
59cd8054be8a shahanafarooqui/rtl:0.12.1 “/data/entrypoint.sh” 25 minutes ago Up 25 minutes 3000/tcp ride-the-lightning_web_1
71f26fa18cb4 getumbrel/app-proxy:v0.5.1 “docker-entrypoint.s…” 25 minutes ago Up 25 minutes 0.0.0.0:3001->3001/tcp, :::3001->3001/tcp ride-the-lightning_app_proxy_1
314c7f5108da getumbrel/app-proxy:v0.5.1 “docker-entrypoint.s…” 25 minutes ago Up 25 minutes 0.0.0.0:2102->2102/tcp, :::2102->2102/tcp electrs_app_proxy_1
6beb3f86b07b getumbrel/electrs:v0.9.4 “electrs” 25 minutes ago Up 25 minutes 4224/tcp, 0.0.0.0:50001->50001/tcp, :::50001->50001/tcp electrs_electrs_1
361413c5df19 getumbrel/app-proxy:v0.5.1 “docker-entrypoint.s…” 25 minutes ago Up 25 minutes 0.0.0.0:3008->3008/tcp, :::3008->3008/tcp bluewallet_app_proxy_1
ae78a5bf035e redis:6.2.2-buster “docker-entrypoint.s…” 25 minutes ago Up 25 minutes 6379/tcp bluewallet_redis_1
ea055fe23608 boltz/boltz-lnd:1.2.6 “boltzd --lnd.host=”…" 25 minutes ago Up 25 minutes 9002-9003/tcp ride-the-lightning_boltz_1
c209e9b3acb3 linuxserver/transmission:version-3.00-r5 “/init” 25 minutes ago Up 25 minutes 9091/tcp, 0.0.0.0:51413->51413/tcp, 0.0.0.0:51413->51413/udp, :::51413->51413/tcp, :::51413->51413/udp transmission_server_1
7f69e4092356 getumbrel/app-proxy:v0.5.1 “docker-entrypoint.s…” 25 minutes ago Up 25 minutes 0.0.0.0:3800->3800/tcp, :::3800->3800/tcp snowflake_app_proxy_1
97bedbccaeac lncm/tor:0.4.7.8 “tor” 25 minutes ago Up 25 minutes 9050-9051/tcp, 29050-29051/tcp bluewallet_tor_server_1
454647bfed1c mempool/frontend:v2.4.0 “/patch/entrypoint.s…” 26 minutes ago Up 25 minutes 80/tcp mempool_web_1
3b8bfd5fdfd4 lncm/tor:0.4.7.8 “tor” 26 minutes ago Up 25 minutes 9050-9051/tcp, 29050-29051/tcp snowflake_tor_server_1
996e50a85310 getumbrel/app-proxy:v0.5.1 “docker-entrypoint.s…” 26 minutes ago Up 25 minutes 0.0.0.0:3006->3006/tcp, :::3006->3006/tcp mempool_app_proxy_1
79c0b9050da5 lncm/tor:0.4.7.8 “tor” 26 minutes ago Up 25 minutes 9050-9051/tcp, 29050-29051/tcp lightning_tor_server_1
dde8e5aba377 getumbrel/gotty:v1.0.1 “gotty --port 3800 -…” 26 minutes ago Up 25 minutes 8080/tcp snowflake_web_1
eae4ef17adcb lncm/tor:0.4.7.8 “tor” 26 minutes ago Up 25 minutes 9050-9051/tcp, 29050-29051/tcp transmission_tor_server_1
675234e1c99f getumbrel/app-proxy:v0.5.1 “docker-entrypoint.s…” 26 minutes ago Up 25 minutes 0.0.0.0:2101->2101/tcp, :::2101->2101/tcp lightning_app_proxy_1
df803773badd getumbrel/snowflake:v2.1.0 “/bin/proxy -log /da…” 26 minutes ago Up 25 minutes snowflake_proxy_1
8196a4f947cf mempool/backend:v2.4.0 “docker-entrypoint.s…” 26 minutes ago Up 25 minutes 8999/tcp mempool_api_1
3931ef61cd6d getumbrel/app-proxy:v0.5.1 “docker-entrypoint.s…” 26 minutes ago Up 25 minutes 0.0.0.0:9091->9091/tcp, :::9091->9091/tcp transmission_app_proxy_1
da62c7f0527b getumbrel/umbrel-lightning:v1.0.4 “docker-entrypoint.s…” 26 minutes ago Up 25 minutes 3006/tcp lightning_app_1
476170eac65e mariadb:10.5.12 “docker-entrypoint.s…” 26 minutes ago Up 25 minutes 3306/tcp mempool_mariadb_1
ac7532510295 lightninglabs/lnd:v0.15.1-beta “lnd --listen=0.0.0.…” 26 minutes ago Up 25 minutes 0.0.0.0:8080->8080/tcp, :::8080->8080/tcp, 0.0.0.0:9735->9735/tcp, :::9735->9735/tcp, 0.0.0.0:10009->10009/tcp, :::10009->10009/tcp lightning_lnd_1
6767702e4039 lncm/tor:0.4.7.8 “tor” 26 minutes ago Up 25 minutes 9050-9051/tcp, 29050-29051/tcp mempool_tor_server_1
99abfb34bb4f apotdevin/thunderhub:v0.13.15 “docker-entrypoint.s…” 26 minutes ago Up 25 minutes 3000/tcp thunderhub_web_1
d281707422ef lncm/tor:0.4.7.8 “tor” 26 minutes ago Up 25 minutes 9050-9051/tcp, 29050-29051/tcp thunderhub_tor_server_1
33bb6b8d9a32 getumbrel/app-proxy:v0.5.1 “docker-entrypoint.s…” 26 minutes ago Up 25 minutes 0.0.0.0:3000->3000/tcp, :::3000->3000/tcp thunderhub_app_proxy_1
e3d34a33a069 nginx:1.17.8 “nginx -g 'daemon of…” 26 minutes ago Up 26 minutes 0.0.0.0:80->80/tcp, :::80->80/tcp nginx
37786f4b41f5 getumbrel/manager:v0.5.0 “docker-entrypoint.s…” 26 minutes ago Up 26 minutes 3006/tcp manager
b7baf59e48e6 getumbrel/dashboard:v0.5.4 “docker-entrypoint.s…” 26 minutes ago Up 26 minutes 3004/tcp dashboard
26423e80523e lncm/tor:0.4.7.8 “tor” 26 minutes ago Up 26 minutes 9051/tcp, 127.0.0.1:9050->9050/tcp, 29050-29051/tcp tor
dd6c08bf7550 getumbrel/auth-server:v0.5.1 “docker-entrypoint.s…” 26 minutes ago Up 26 minutes 0.0.0.0:2000->2000/tcp, :::2000->2000/tcp auth
umbrel@umbrel:~ $ docker ps | grep lnd
bb4d6584e3af bluewalletorganization/lndhub:v1.4.1 “docker-entrypoint.s…” 25 minutes ago Up 22 minutes 3000/tcp bluewallet_lndhub_1
ea055fe23608 boltz/boltz-lnd:1.2.6 “boltzd --lnd.host=”…" 26 minutes ago Up 25 minutes 9002-9003/tcp ride-the-lightning_boltz_1
ac7532510295 lightninglabs/lnd:v0.15.1-beta “lnd --listen=0.0.0.…” 26 minutes ago Up 25 minutes 0.0.0.0:8080->8080/tcp, :::8080->8080/tcp, 0.0.0.0:9735->9735/tcp, :::9735->9735/tcp, 0.0.0.0:10009->10009/tcp, :::10009->10009/tcp lightning_lnd_1

--------------- lnd.conf:
umbrel@umbrel:~ $ cat /home/umbrel/umbrel/app-data/lightning/data/lnd/lnd.conf

Automatically reset with every Umbrel update!

[Application Options]
listen=0.0.0.0:9735
rpclisten=0.0.0.0:10009
restlisten=0.0.0.0:8080

Allow push payments

accept-keysend=true

tlsextraip=10.21.21.9
tlsextradomain=umbrel.local
tlsautorefresh=1

Do not include IPs in the RPC TLS certificate

#################### tlsdisableautofill=1
#################### feeurl=
#-------------- From https://github.com/alexbosworth/run-lnd

Mark unpayable, unpaid invoices as deleted

Removed to stabilze >.13------------------ gc-canceled-invoices-on-startup=1

Removed to stabilze >.13------------------ gc-canceled-invoices-on-the-fly=1

#------------------------------ added June 10, 2021 during 0.3.12
alias=PRIVATE
color=#fff700
maxpendingchannels=199
minchansize=3000000

[protocol]
protocol.wumbo-channels=true

[Bitcoind]
bitcoind.rpchost=10.21.21.8
bitcoind.rpcuser=umbrel
bitcoind.rpcpass=PRIVATE

ZMQ listeners

bitcoind.zmqpubrawblock=tcp://10.21.21.8:28332
bitcoind.zmqpubrawtx=tcp://10.21.21.8:28333

[Bitcoin]
bitcoin.active=1
bitcoin.mainnet=1

Default to neutrino as the node is

automatically switched to bitcoind once

IBD is complete

bitcoin.node=bitcoind
bitcoin.defaultchanconfs=2

[neutrino]

Testnet neutrino peers that are automatically

uncommented if Umbrel is configured for testnet

neutrino.addpeer=testnet1-btcd.zaphq.io

neutrino.addpeer=testnet2-btcd.zaphq.io

[tor]
tor.active=1
tor.control=10.21.21.11:29051
tor.socks=10.21.21.11:9050
tor.targetipaddress=10.21.21.9
tor.password=PRIVATE
tor.v3=1

IMPORTANT (to me):
I have significant funds in the node wallet (both on-chain and LN) so I don’t want to punt and restart from scratch by erasing the SSD. I do have a backup of my (42) channels.

REQUEST:
Any ideas or solutions?

Here are relevant portions of my [Umbrel > Settings > System > Troubleshoot > Start] log:

Filesystem Size Used Avail Use% Mounted on
/dev/root 30G 9.0G 19G 33% /
/dev/sda1 916G 517G 353G 60% /home/umbrel/umbrel

Startup service logs

Sep 12 01:55:38 umbrel umbrel startup[1099]: Creating snowflake_app_proxy_1 … done
Sep 12 01:55:38 umbrel umbrel startup[1099]: Creating thunderhub_tor_server_1 … done
Sep 12 01:55:39 umbrel umbrel startup[1099]: Creating transmission_tor_server_1 … done
Sep 12 01:55:40 umbrel umbrel startup[1099]: Creating bitcoin_tor_server_1 … done
Sep 12 01:55:41 umbrel umbrel startup[1099]: Creating thunderhub_app_proxy_1 … done
Sep 12 01:55:41 umbrel umbrel startup[1099]: Creating lightning_app_1 … done
Sep 12 01:55:42 umbrel umbrel startup[1099]: Creating bluewallet_redis_1 … done
Sep 12 01:55:42 umbrel umbrel startup[1099]: Creating transmission_app_proxy_1 … done
Sep 12 01:55:42 umbrel umbrel startup[1099]: Creating bluewallet_lndhub_1 …
Sep 12 01:55:42 umbrel umbrel startup[1099]: Creating bluewallet_tor_server_1 … done
Sep 12 01:55:43 umbrel umbrel startup[1099]: Creating ride-the-lightning_tor_server_1 … done
Sep 12 01:55:43 umbrel umbrel startup[1099]: Creating lightning_tor_server_1 … done
Sep 12 01:55:44 umbrel umbrel startup[1099]: Creating ride-the-lightning_boltz_1 … done
Sep 12 01:55:44 umbrel umbrel startup[1099]: Creating bluewallet_app_proxy_1 … done
Sep 12 01:55:44 umbrel umbrel startup[1099]: Creating lightning_app_proxy_1 … done
Sep 12 01:55:44 umbrel umbrel startup[1099]: Creating ride-the-lightning_web_1 … done
Sep 12 01:55:44 umbrel umbrel startup[1099]: Creating bitcoin_app_proxy_1 … done
Sep 12 01:55:45 umbrel umbrel startup[1099]: Creating transmission_server_1 … done
Sep 12 01:55:46 umbrel umbrel startup[1099]: Creating ride-the-lightning_app_proxy_1 … done
Sep 12 01:55:47 umbrel umbrel startup[1099]: Creating bitcoin_bitcoind_1 … done
Sep 12 01:55:47 umbrel umbrel startup[1099]: Creating bitcoin_server_1 …
Sep 12 01:55:49 umbrel umbrel startup[1099]: Creating bluewallet_lndhub_1 … done
Sep 12 01:55:49 umbrel umbrel startup[1099]: Creating lightning_lnd_1 … done
Sep 12 01:55:51 umbrel umbrel startup[1099]: Creating bitcoin_server_1 … done
Sep 12 01:55:52 umbrel umbrel startup[1099]: Umbrel is now accessible at
Sep 12 01:55:52 umbrel umbrel startup[1099]: http://umbrel.local
Sep 12 01:55:52 umbrel umbrel startup[1099]: http://192.168.0.36
Sep 12 01:55:52 umbrel systemd[1]: Started Umbrel Startup Service.
Sep 12 01:55:53 umbrel passwd[7902]: pam_unix(passwd:chauthtok): password changed for umbrel

External storage service logs

– Logs begin at Mon 2022-09-12 01:54:36 UTC, end at Mon 2022-09-12 02:00:02 UTC. –
Sep 12 01:54:41 umbrel systemd[1]: Starting External Storage Mounter…
Sep 12 01:54:41 umbrel external storage mounter[504]: Running external storage mount script…
Sep 12 01:54:41 umbrel external storage mounter[504]: Found device “CT1000MX 500SSD1”
Sep 12 01:54:41 umbrel external storage mounter[504]: Blacklisting USB device IDs against UAS driver…
Sep 12 01:54:41 umbrel external storage mounter[504]: Rebinding USB drivers…
Sep 12 01:54:41 umbrel external storage mounter[504]: Checking USB devices are back…
Sep 12 01:54:41 umbrel external storage mounter[504]: Waiting for USB devices…
Sep 12 01:54:42 umbrel external storage mounter[504]: Waiting for USB devices…
Sep 12 01:54:43 umbrel external storage mounter[504]: Waiting for USB devices…
Sep 12 01:54:44 umbrel external storage mounter[504]: Checking if the device is ext4…
Sep 12 01:54:44 umbrel external storage mounter[504]: Yes, it is ext4
Sep 12 01:54:44 umbrel external storage mounter[504]: Checking if device contains an Umbrel install…
Sep 12 01:54:44 umbrel external storage mounter[504]: Yes, it contains an Umbrel install
Sep 12 01:54:44 umbrel external storage mounter[504]: Bind mounting external storage over local Umbrel installation…
Sep 12 01:54:44 umbrel external storage mounter[504]: Bind mounting external storage over local Docker data dir…
Sep 12 01:54:44 umbrel external storage mounter[504]: Bind mounting external storage to /swap
Sep 12 01:54:44 umbrel external storage mounter[504]: Bind mounting SD card root at /sd-card…
Sep 12 01:54:44 umbrel external storage mounter[504]: Checking Umbrel root is now on external storage…
Sep 12 01:54:45 umbrel external storage mounter[504]: Checking /var/lib/docker is now on external storage…
Sep 12 01:54:45 umbrel external storage mounter[504]: Checking /swap is now on external storage…
Sep 12 01:54:45 umbrel external storage mounter[504]: Setting up swapfile
Sep 12 01:54:46 umbrel external storage mounter[504]: Setting up swapspace version 1, size = 4 GiB (4294963200 bytes)
Sep 12 01:54:46 umbrel external storage mounter[504]: no label, UUID=cf562a41-372a-4726-b3af-142f0a510ccb
Sep 12 01:54:46 umbrel external storage mounter[504]: Checking SD Card root is bind mounted at /sd-root…
Sep 12 01:54:46 umbrel external storage mounter[504]: Starting external drive mount monitor…
Sep 12 01:54:46 umbrel external storage mounter[504]: Mount script completed successfully!
Sep 12 01:54:46 umbrel systemd[1]: Started External Storage Mounter.

External storage SD card update service logs

– Logs begin at Mon 2022-09-12 01:54:36 UTC, end at Mon 2022-09-12 02:00:02 UTC. –
Sep 12 01:54:54 umbrel systemd[1]: Starting External Storage SDcard Updater…
Sep 12 01:54:54 umbrel external storage updater[1021]: Checking if SD card Umbrel is newer than external storage…
Sep 12 01:54:54 umbrel external storage updater[1021]: No, SD version is not newer, exiting.
Sep 12 01:54:54 umbrel systemd[1]: Started External Storage SDcard Updater.

Karen logs

Removing lightning_lnd_1 …
Removing lightning-terminal_app_proxy_1 …
Removing lightning-terminal_tor_server_1 …
Removing lightning-terminal_web_1 …
Removing lightning-terminal_web_1 … done
Removing lightning_tor_server_1 … done
Removing lightning_lnd_1 … done
Removing lightning-terminal_tor_server_1 … done
Removing lightning-terminal_app_proxy_1 … done
Removing lightning_app_proxy_1 … done
Going to remove lightning-terminal_app_proxy_1, lightning-terminal_tor_server_1, lightning-terminal_web_1
Removing lightning_app_1 … done
Going to remove lightning_tor_server_1, lightning_app_proxy_1, lightning_app_1, lightning_lnd_1

Stopping Docker services…

Stopping nginx …
Stopping manager …
Stopping dashboard …
Stopping tor …
Stopping auth …
Stopping nginx … done
Stopping auth … done
Stopping dashboard … done
Stopping manager … done
Stopping tor … done
Removing nginx …
Removing manager …
Removing dashboard …
Removing tor …
Removing auth …
Removing dashboard … done
Removing nginx … done
Removing tor … done
Removing auth … done
Removing manager … done
Removing network umbrel_main_network
Killing background services
karen is running in /home/umbrel/umbrel/events
Got signal:
karen is getting triggered!
Got signal:
karen is getting triggered!
./karen: line 68: /home/umbrel/umbrel/events/triggers/: Is a directory
./karen: line 68: /home/umbrel/umbrel/events/triggers/: Is a directory
Got signal: change-password
karen is getting triggered!
New password: Retype new password: passwd: password updated successfully
Got signal: debug
karen is getting triggered!

Docker containers

NAMES STATUS
bitcoin_server_1 Up 6 minutes
bluewallet_lndhub_1 Up 3 minutes
ride-the-lightning_app_proxy_1 Up 6 minutes
ride-the-lightning_boltz_1 Up 6 minutes
ride-the-lightning_web_1 Up 6 minutes
lightning_tor_server_1 Up 6 minutes
lightning_lnd_1 Up 6 minutes
lightning_app_1 Up 6 minutes
ride-the-lightning_tor_server_1 Up 6 minutes
lightning_app_proxy_1 Up 6 minutes
bluewallet_redis_1 Up 6 minutes
bluewallet_app_proxy_1 Up 6 minutes
bluewallet_tor_server_1 Up 6 minutes
bitcoin_tor_server_1 Up 6 minutes
bitcoin_bitcoind_1 Up 6 minutes
bitcoin_app_proxy_1 Up 6 minutes
transmission_tor_server_1 Up 6 minutes
transmission_server_1 Up 6 minutes
thunderhub_tor_server_1 Up 6 minutes
thunderhub_web_1 Up 6 minutes
thunderhub_app_proxy_1 Up 6 minutes
transmission_app_proxy_1 Up 6 minutes
snowflake_tor_server_1 Up 6 minutes
snowflake_app_proxy_1 Up 6 minutes
snowflake_proxy_1 Up 6 minutes
snowflake_web_1 Up 6 minutes
lightning-terminal_web_1 Up 2 minutes
lightning-terminal_tor_server_1 Up 6 minutes
lightning-terminal_app_proxy_1 Up 6 minutes
nginx Up 7 minutes
manager Up 7 minutes
dashboard Up 7 minutes
auth Up 7 minutes
tor Up 7 minutes

Tor logs

Attaching to tor
tor | Sep 12 01:55:29.000 [notice] Bootstrapped 75% (enough_dirinfo): Loaded enough directory info to build circuits
tor | Sep 12 01:55:30.000 [notice] Bootstrapped 80% (ap_conn): Connecting to a relay to build circuits
tor | Sep 12 01:55:30.000 [notice] Bootstrapped 85% (ap_conn_done): Connected to a relay to build circuits
tor | Sep 12 01:55:30.000 [notice] Bootstrapped 89% (ap_handshake): Finishing handshake with a relay to build circuits
tor | Sep 12 01:55:30.000 [notice] Bootstrapped 90% (ap_handshake_done): Handshake finished with a relay to build circuits
tor | Sep 12 01:55:30.000 [notice] Bootstrapped 95% (circuit_create): Establishing a Tor circuit
tor | Sep 12 01:55:31.000 [notice] Bootstrapped 100% (done): Done
tor | Sep 12 01:59:17.000 [notice] New control connection opened from 10.21.21.9.
tor | Sep 12 01:59:47.000 [notice] Have tried resolving or connecting to address ‘[scrubbed]’ at 3 different places. Giving up.
tor | Sep 12 02:00:19.000 [notice] Have tried resolving or connecting to address ‘[scrubbed]’ at 3 different places. Giving up.

App logs

bitcoin

server_1 | umbrel-middleware
server_1 | ::ffff:10.21.0.11 - - [Mon, 12 Sep 2022 02:02:12 GMT] “GET /v1/bitcoind/info/stats HTTP/1.1” 200 123 “-” “Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36”
server_1 |
server_1 | umbrel-middleware
server_1 | ::ffff:10.21.0.11 - - [Mon, 12 Sep 2022 02:02:17 GMT] “GET /v1/bitcoind/info/stats HTTP/1.1” 200 123 “-” “Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36”
tor_server_1 | Sep 12 01:55:44.000 [notice] Bootstrapped 40% (loading_keys): Loading authority key certs
tor_server_1 | Sep 12 01:55:47.000 [notice] Bootstrapped 45% (requesting_descriptors): Asking for relay descriptors
tor_server_1 | Sep 12 01:55:47.000 [notice] I learned some more directory information, but not enough to build a circuit: We need more microdescriptors: we have 0/6617, and can only build 0% of likely paths. (We have 0% of guards bw, 0% of midpoint bw, and 0% of end bw (no exits in consensus, using mid) = 0% of path bw.)
tor_server_1 | Sep 12 01:55:48.000 [notice] Bootstrapped 50% (loading_descriptors): Loading relay descriptors
tor_server_1 | Sep 12 01:55:51.000 [notice] The current consensus contains exit nodes. Tor can build exit and internal paths.
tor_server_1 | Sep 12 01:56:36.000 [notice] I learned some more directory information, but not enough to build a circuit: We need more microdescriptors: we have 3117/6617, and can only build 10% of likely paths. (We have 48% of guards bw, 48% of midpoint bw, and 44% of exit bw = 10% of path bw.)
tor_server_1 | Sep 12 01:57:53.000 [notice] Bootstrapped 56% (loading_descriptors): Loading relay descriptors
tor_server_1 | Sep 12 01:57:53.000 [notice] Bootstrapped 63% (loading_descriptors): Loading relay descriptors
tor_server_1 | Sep 12 01:57:54.000 [notice] Bootstrapped 68% (loading_descriptors): Loading relay descriptors
tor_server_1 | Sep 12 01:57:54.000 [notice] Bootstrapped 75% (enough_dirinfo): Loaded enough directory info to build circuits
tor_server_1 | Sep 12 01:57:54.000 [notice] Bootstrapped 80% (ap_conn): Connecting to a relay to build circuits
tor_server_1 | Sep 12 01:57:54.000 [notice] Bootstrapped 85% (ap_conn_done): Connected to a relay to build circuits
tor_server_1 | Sep 12 01:57:54.000 [notice] Bootstrapped 89% (ap_handshake): Finishing handshake with a relay to build circuits
tor_server_1 | Sep 12 01:57:55.000 [notice] Bootstrapped 90% (ap_handshake_done): Handshake finished with a relay to build circuits
tor_server_1 | Sep 12 01:57:55.000 [notice] Bootstrapped 95% (circuit_create): Establishing a Tor circuit
tor_server_1 | Sep 12 01:57:55.000 [notice] Bootstrapped 100% (done): Done
server_1 |
server_1 | umbrel-middleware
server_1 | ::ffff:10.21.0.11 - - [Mon, 12 Sep 2022 02:02:22 GMT] “GET /v1/bitcoind/info/stats HTTP/1.1” 200 123 “-” “Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36”
server_1 |
server_1 | umbrel-middleware
server_1 | ::ffff:10.21.0.11 - - [Mon, 12 Sep 2022 02:02:27 GMT] “GET /v1/bitcoind/info/stats HTTP/1.1” 200 123 “-” “Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36”
server_1 |
server_1 | umbrel-middleware

bluewallet

tor_server_1 | Sep 12 01:55:42.786 [notice] Opening Socks listener on 127.0.0.1:9050
tor_server_1 | Sep 12 01:55:42.786 [notice] Opened Socks listener connection (ready) on 127.0.0.1:9050
tor_server_1 | Sep 12 01:55:43.000 [notice] Bootstrapped 0% (starting): Starting
tor_server_1 | Sep 12 01:55:43.000 [notice] Starting with guard context “default”
tor_server_1 | Sep 12 01:55:44.000 [notice] Bootstrapped 5% (conn): Connecting to a relay
tor_server_1 | Sep 12 01:55:44.000 [notice] Bootstrapped 10% (conn_done): Connected to a relay
tor_server_1 | Sep 12 01:55:44.000 [notice] Bootstrapped 14% (handshake): Handshaking with a relay
tor_server_1 | Sep 12 01:55:45.000 [notice] Bootstrapped 15% (handshake_done): Handshake with a relay done
tor_server_1 | Sep 12 01:55:45.000 [notice] Bootstrapped 20% (onehop_create): Establishing an encrypted directory connection
tor_server_1 | Sep 12 01:55:45.000 [notice] Bootstrapped 25% (requesting_status): Asking for networkstatus consensus
tor_server_1 | Sep 12 01:55:45.000 [notice] Bootstrapped 30% (loading_status): Loading networkstatus consensus
tor_server_1 | Sep 12 01:55:48.000 [notice] I learned some more directory information, but not enough to build a circuit: We have no usable consensus.
tor_server_1 | Sep 12 01:55:48.000 [notice] Bootstrapped 40% (loading_keys): Loading authority key certs
tor_server_1 | Sep 12 01:55:52.000 [notice] Bootstrapped 45% (requesting_descriptors): Asking for relay descriptors
tor_server_1 | Sep 12 01:55:52.000 [notice] I learned some more directory information, but not enough to build a circuit: We need more microdescriptors: we have 0/6617, and can only build 0% of likely paths. (We have 0% of guards bw, 0% of midpoint bw, and 0% of end bw (no exits in consensus, using mid) = 0% of path bw.)
tor_server_1 | Sep 12 01:55:53.000 [notice] I learned some more directory information, but not enough to build a circuit: We need more microdescriptors: we have 0/6617, and can only build 0% of likely paths. (We have 0% of guards bw, 0% of midpoint bw, and 0% of end bw (no exits in consensus, using mid) = 0% of path bw.)
tor_server_1 | Sep 12 01:55:54.000 [notice] Bootstrapped 50% (loading_descriptors): Loading relay descriptors
tor_server_1 | Sep 12 01:55:59.000 [notice] The current consensus contains exit nodes. Tor can build exit and internal paths.
tor_server_1 | Sep 12 01:56:08.000 [notice] Bootstrapped 56% (loading_descriptors): Loading relay descriptors
tor_server_1 | Sep 12 01:56:11.000 [notice] Bootstrapped 63% (loading_descriptors): Loading relay descriptors
tor_server_1 | Sep 12 01:56:11.000 [notice] Bootstrapped 68% (loading_descriptors): Loading relay descriptors
tor_server_1 | Sep 12 01:56:12.000 [notice] Bootstrapped 73% (loading_descriptors): Loading relay descriptors
tor_server_1 | Sep 12 01:56:12.000 [notice] Bootstrapped 75% (enough_dirinfo): Loaded enough directory info to build circuits
tor_server_1 | Sep 12 01:56:12.000 [notice] Bootstrapped 80% (ap_conn): Connecting to a relay to build circuits
tor_server_1 | Sep 12 01:56:12.000 [notice] Bootstrapped 85% (ap_conn_done): Connected to a relay to build circuits
tor_server_1 | Sep 12 01:56:13.000 [notice] Bootstrapped 89% (ap_handshake): Finishing handshake with a relay to build circuits
tor_server_1 | Sep 12 01:56:13.000 [notice] Bootstrapped 90% (ap_handshake_done): Handshake finished with a relay to build circuits
tor_server_1 | Sep 12 01:56:13.000 [notice] Bootstrapped 95% (circuit_create): Establishing a Tor circuit
tor_server_1 | Sep 12 01:56:14.000 [notice] Bootstrapped 100% (done): Done

lightning

app_1 | umbrel-middleware
app_1 | ::ffff:10.21.0.14 - - [Mon, 12 Sep 2022 02:01:48 GMT] “GET / HTTP/1.1” 200 873 “-” “Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36”
app_1 |
app_1 | umbrel-middleware
app_1 | ::ffff:10.21.0.14 - - [Mon, 12 Sep 2022 02:01:48 GMT] “GET /css/app.2948aa83.css HTTP/1.1” 200 256524 “-” “Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36”
app_1 |
app_1 | umbrel-middleware
app_1 | ::ffff:10.21.0.14 - - [Mon, 12 Sep 2022 02:01:48 GMT] “GET /js/app.2f7e9a0e.js HTTP/1.1” 200 168119 “-” “Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36”
app_1 |
app_1 | umbrel-middleware
app_1 | ::ffff:10.21.0.14 - - [Mon, 12 Sep 2022 02:01:48 GMT] “GET /js/chunk-vendors.8f6138b2.js HTTP/1.1” 200 1756101 “-” “Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36”
app_1 |
app_1 | umbrel-middleware
app_1 | ::ffff:10.21.0.14 - - [Mon, 12 Sep 2022 02:01:49 GMT] “GET /img/icon.2405747e.svg HTTP/1.1” 200 182852 “-” “Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36”
app_1 |
app_1 | umbrel-middleware
app_1 | ::ffff:10.21.0.14 - - [Mon, 12 Sep 2022 02:01:49 GMT] “GET /favicon.png HTTP/1.1” 200 58111 “-” “Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36”
app_1 |
app_1 | umbrel-middleware
app_1 | ::ffff:10.21.0.14 - - [Mon, 12 Sep 2022 02:01:51 GMT] “GET /ping HTTP/1.1” 304 - “-” “Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36”
app_1 |
app_1 | umbrel-middleware
app_1 | ::ffff:10.21.0.14 - - [Mon, 12 Sep 2022 02:01:51 GMT] “GET /v1/system/onboarding HTTP/1.1” 304 - “-” “Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36”
app_1 |
app_1 | umbrel-middleware
app_1 | ::ffff:10.21.0.14 - - [Mon, 12 Sep 2022 02:01:51 GMT] “GET /v1/system/seed-exists HTTP/1.1” 304 - “-” “Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36”
app_1 |
app_1 | umbrel-middleware
app_1 | [backup-monitor] Checking channel backup…
app_1 | [backup-monitor] Sleeping…

lightning-terminal

tor_server_1 | Sep 12 01:56:03.000 [notice] Bootstrapped 80% (ap_conn): Connecting to a relay to build circuits
tor_server_1 | Sep 12 01:56:03.000 [notice] Bootstrapped 85% (ap_conn_done): Connected to a relay to build circuits
tor_server_1 | Sep 12 01:56:03.000 [notice] Bootstrapped 89% (ap_handshake): Finishing handshake with a relay to build circuits
tor_server_1 | Sep 12 01:56:04.000 [notice] Bootstrapped 90% (ap_handshake_done): Handshake finished with a relay to build circuits
tor_server_1 | Sep 12 01:56:04.000 [notice] Bootstrapped 95% (circuit_create): Establishing a Tor circuit
tor_server_1 | Sep 12 01:56:05.000 [notice] Bootstrapped 100% (done): Done
web_1 | ----------------------------------------------------------
web_1 | 2022-09-12 01:55:55.164 [INF] LNDC: Creating lnd connection to 10.21.21.9:10009
web_1 | 2022-09-12 01:55:55.165 [INF] LNDC: Connected to lnd
web_1 | 2022-09-12 01:55:55.212 [INF] LNDC: Waiting for lnd to unlock
web_1 | 2022-09-12 01:55:55.238 [INF] LNDC: Wallet state of lnd is now: Lnd is waiting to start
web_1 | 2022-09-12 01:59:10.185 [INF] LNDC: Wallet state of lnd is now: Wallet is locked
web_1 | 2022-09-12 01:59:14.477 [INF] LNDC: Wallet state of lnd is now: Wallet is unlocked
web_1 | 2022-09-12 01:59:18.152 [INF] LNDC: Wallet state of lnd is now: Lnd RPC server is ready for requests
web_1 | 2022-09-12 01:59:18.303 [INF] LNDC: lnd version: v0.15.1-beta, build tags ‘autopilotrpc,signrpc,walletrpc,chainrpc,invoicesrpc,watchtowerrpc,neutrinorpc,monitoring,peersrpc,kvdb_postgres,kvdb_etcd’
web_1 | 2022-09-12 01:59:18.304 [INF] LNDC: Using network mainnet
web_1 | 2022-09-12 01:59:18.304 [INF] LNDC: Waiting for lnd to be fully synced to its chain backend, this might take a while
web_1 | 2022-09-12 01:59:58.833 [ERR] LITD: Could not start subservers: error waiting for chain to be synced: error in GetInfo call: rpc error: code = DeadlineExceeded desc = context deadline exceeded
web_1 | error waiting for chain to be synced: error in GetInfo call: rpc error: code = DeadlineExceeded desc = context deadline exceeded
web_1 | 2022-09-12 02:00:00.321 [INF] LITD: LiT version: 0.7.1-alpha commit=v0.7.1-alpha
web_1 | 2022-09-12 02:00:00.326 [INF] SESS: Checking for schema update: latest_version=0, db_version=0
web_1 | 2022-09-12 02:00:00.327 [INF] LITD: Dialing lnd gRPC server at 10.21.21.9:10009
web_1 | 2022-09-12 02:00:00.339 [INF] LITD: Listening for http_tls on: 127.0.0.1:8443
web_1 | 2022-09-12 02:00:00.340 [INF] LITD: Listening for http on: [::]:3004
app_proxy_1 | yarn run v1.22.19
app_proxy_1 | $ node ./bin/www
app_proxy_1 | [HPM] Proxy created: / -> http://10.21.21.17:3004
app_proxy_1 | Waiting for 10.21.21.17:3004 to open…
app_proxy_1 | Lightning Terminal is now ready…
app_proxy_1 | Listening on port: 3004

ride-the-lightning

tor_server_1 | Sep 12 01:55:44.000 [notice] Bootstrapped 5% (conn): Connecting to a relay
tor_server_1 | Sep 12 01:55:44.000 [notice] Bootstrapped 10% (conn_done): Connected to a relay
tor_server_1 | Sep 12 01:55:44.000 [notice] Bootstrapped 14% (handshake): Handshaking with a relay
tor_server_1 | Sep 12 01:55:44.000 [notice] Bootstrapped 15% (handshake_done): Handshake with a relay done
tor_server_1 | Sep 12 01:55:44.000 [notice] Bootstrapped 20% (onehop_create): Establishing an encrypted directory connection
tor_server_1 | Sep 12 01:55:45.000 [notice] Bootstrapped 25% (requesting_status): Asking for networkstatus consensus
tor_server_1 | Sep 12 01:55:45.000 [notice] Bootstrapped 30% (loading_status): Loading networkstatus consensus
tor_server_1 | Sep 12 01:55:48.000 [notice] I learned some more directory information, but not enough to build a circuit: We have no usable consensus.
tor_server_1 | Sep 12 01:55:48.000 [notice] Bootstrapped 40% (loading_keys): Loading authority key certs
tor_server_1 | Sep 12 01:55:51.000 [notice] Bootstrapped 45% (requesting_descriptors): Asking for relay descriptors
tor_server_1 | Sep 12 01:55:51.000 [notice] I learned some more directory information, but not enough to build a circuit: We need more microdescriptors: we have 0/6617, and can only build 0% of likely paths. (We have 0% of guards bw, 0% of midpoint bw, and 0% of end bw (no exits in consensus, using mid) = 0% of path bw.)
tor_server_1 | Sep 12 01:55:52.000 [notice] I learned some more directory information, but not enough to build a circuit: We need more microdescriptors: we have 0/6617, and can only build 0% of likely paths. (We have 0% of guards bw, 0% of midpoint bw, and 0% of end bw (no exits in consensus, using mid) = 0% of path bw.)
tor_server_1 | Sep 12 01:55:53.000 [notice] Bootstrapped 50% (loading_descriptors): Loading relay descriptors
tor_server_1 | Sep 12 01:55:56.000 [notice] The current consensus contains exit nodes. Tor can build exit and internal paths.
tor_server_1 | Sep 12 01:56:08.000 [notice] Bootstrapped 56% (loading_descriptors): Loading relay descriptors
tor_server_1 | Sep 12 01:56:09.000 [notice] Bootstrapped 63% (loading_descriptors): Loading relay descriptors
tor_server_1 | Sep 12 01:56:09.000 [notice] Bootstrapped 73% (loading_descriptors): Loading relay descriptors
tor_server_1 | Sep 12 01:56:10.000 [notice] Bootstrapped 75% (enough_dirinfo): Loaded enough directory info to build circuits
tor_server_1 | Sep 12 01:56:11.000 [notice] Bootstrapped 80% (ap_conn): Connecting to a relay to build circuits
tor_server_1 | Sep 12 01:56:11.000 [notice] Bootstrapped 85% (ap_conn_done): Connected to a relay to build circuits
tor_server_1 | Sep 12 01:56:11.000 [notice] Bootstrapped 89% (ap_handshake): Finishing handshake with a relay to build circuits
tor_server_1 | Sep 12 01:56:12.000 [notice] Bootstrapped 90% (ap_handshake_done): Handshake finished with a relay to build circuits
tor_server_1 | Sep 12 01:56:12.000 [notice] Bootstrapped 95% (circuit_create): Establishing a Tor circuit
tor_server_1 | Sep 12 01:56:13.000 [notice] Bootstrapped 100% (done): Done
web_1 |
web_1 | [9/12/2022, 1:56:12 AM] INFO: WebSocketServer => Websocket Server Connected.
web_1 |
web_1 | [9/12/2022, 1:56:12 AM] INFO: RTL => Server is up and running, please open the UI at http://localhost:3001.
web_1 |

thunderhub

web_1 | internalRepr: Map(1) { ‘content-type’ => [ ‘application/grpc’ ] },
web_1 | options: {}
web_1 | }
web_1 | }
web_1 | }
web_1 | ],
web_1 | level: ‘error’,
web_1 | message: ‘Error connecting to node’,
web_1 | timestamp: ‘2022-09-12T01:56:51.518Z’
web_1 | }
web_1 | {
web_1 | message: ‘Unable to connect to any node.’,
web_1 | level: ‘error’,
web_1 | timestamp: ‘2022-09-12T01:56:51.528Z’
web_1 | }
web_1 | {
web_1 | message: ‘UnableToConnectToAnyNode’,
web_1 | level: ‘error’,
web_1 | timestamp: ‘2022-09-12T01:56:51.531Z’
web_1 | }
web_1 | {
web_1 | level: ‘error’,
web_1 | message: 'Initiating subscriptions failed: ',
web_1 | timestamp: ‘2022-09-12T01:56:51.532Z’
web_1 | }
web_1 | {
web_1 | message: ‘Reconnecting to disconnected peers for all nodes.’,
web_1 | level: ‘debug’,
web_1 | timestamp: ‘2022-09-12T02:00:00.059Z’
web_1 | }

Hello, I have recently had the same issue. I would recommend to start deleting lines you added to your lnd.conf file one by one and restarting after deleting each line (if you have modified your lnd.conf file). This solution has worked for many people, so hopefully it works for you as well.