Bonus guide: Lightning Terminal

Lightning Terminal is a web UI to help LND node operators managing their channels liquidity with the use of the Loop and Pool commercial services.

Difficulty: Medium

Status: Tested v3

lightning-terminal


Table of contents

  1. Introduction
    1. Firewall & Nginx
  2. Installation
    1. Download, verify and install
    2. User and data directories
    3. Configuration
  3. Run Lightning Terminal
    1. Manual start
    2. Autostart on boot
    3. Aliases
    4. Settings
    5. Lightning Node Connect
      1. Introduction
      2. How to connect
  4. Lightning Terminal in action
    1. Loop
    2. Pool
    3. Faraday
  5. Optional: Set up the Loop service in Ride The Lightning
  6. Upgrade
  7. Uninstall

Introduction

Lightning Terminal, developed by Lightning Labs, aims to provide additional tools for LND node operators to manage their node and channel balances. Below is a summary of Lightning Terminal’s features:

  • Visualize your channel balances in a web GUI
  • Run a single daemon (litd) that integrates the Loop (loopd), Pool (poold) and Faraday (faraday) daemons
  • Loop client (loop): Perform submarine swaps with the LOOP node using the CLI or web GUI
  • Pool client (pool): Buy and sell inbound liquidity using the peer-to-peer auction-based Pool exchange using the CLI or web GUI
  • Faraday client (frcli): Run the Faraday daemon on your node that provides a CLI-based LN node accounting service
  • Automate fee management (alpha)

Because Pool is alpha software, Lightning Terminal is also alpha software.


Firewall & Nginx

  • Configure the UFW firewall to allow incoming HTTPS requests:

    $ sudo ufw allow 8444/tcp comment 'allow Lightning Terminal SSL'
    $ sudo ufw status
    
  • Enable NGINX reverse proxy to route external encrypted HTTPS traffic internally to Thunderhub

    $ sudo nano /etc/nginx/streams-enabled/litd-reverse-proxy.conf
    
  • Insert the upstream configuration

    upstream litd {
      server 127.0.0.1:8443;
    }
    server {
      listen 8444 ssl;
      proxy_pass litd;
    }
    
  • Test and reload NGINX configuration

    $ sudo nginx -t
    $ sudo systemctl reload nginx
    

Installation

Download, verify and install

  • With the “admin” user, download the latest arm64 binary and its checksum and verify the integrity of the binary

    $ VERSION="0.10.0"
    $ cd /tmp
    $ wget https://github.com/lightninglabs/lightning-terminal/releases/download/v$VERSION-alpha/lightning-terminal-linux-arm64-v$VERSION-alpha.tar.gz
    $ wget https://github.com/lightninglabs/lightning-terminal/releases/download/v$VERSION-alpha/manifest-v$VERSION-alpha.txt 
    $ wget https://github.com/lightninglabs/lightning-terminal/releases/download/v$VERSION-alpha/manifest-v$VERSION-alpha.sig
    $ wget https://github.com/lightninglabs/lightning-terminal/releases/download/v$VERSION-alpha/manifest-v$VERSION-alpha.sig.ots
    
  • Verify the signed checksum against the actual checksum of your download

    $ sha256sum --check manifest-v$VERSION-alpha.txt --ignore-missing
    > Example output: lightning-terminal-linux-arm64-{VERSION}-alpha.tar.gz: OK
    
  • Get the key to verify the manifest file and add it to your GPG keyring.

    $ gpg --keyserver hkps://keyserver.ubuntu.com --recv-keys 26984CB69EB8C4A26196F7A4D7D916376026F177
    > ...
    > gpg: key D7D916376026F177: public key "Elle Mouton <elle.mouton@gmail.com>" imported
    > ...
    
  • Verify the signature of the text file containing the checksums for the application

    $ gpg --verify manifest-v$VERSION-alpha.sig manifest-v$VERSION-alpha.txt
    > gpg: Signature made Thu Mar 30 10:04:01 2023 SAST
    > gpg:                using RSA key 26984CB69EB8C4A26196F7A4D7D916376026F177
    > gpg: Good signature from "Elle Mouton <elle.mouton@gmail.com>" [ultimate]
    > [...]
    
  • Verify OTS attestations

    $ ots verify manifest-v$VERSION-alpha.sig.ots
    > ...
    > Success! Bitcoin block 790028 attests existence as of 2023-05-16 CEST
    
  • Now that the authenticity and integrity of the binary has been proven, unzip the binary and install Lightning Terminal

    $ tar -xzf lightning-terminal-linux-arm64-v$VERSION-alpha.tar.gz
    $ sudo install -m 0755 -o root -g root -t /usr/local/bin lightning-terminal-linux-arm64-v$VERSION-alpha/*
    $ litd --lnd.version
    > Example Output: litd version {VERSION}-beta commit=lightning-terminal-{VERSION}-alpha
    

User and data directories

  • Create the “lit” service user, and make it a member of the “bitcoin” and “lnd” groups

    $ sudo adduser --disabled-password --gecos "" lit
    $ sudo usermod -a -G bitcoin,lnd lit
    
  • Create the Lightning Terminal, Loop, Pool and Faraday data directories

    $ sudo mkdir /data/lit /data/loop /data/pool /data/faraday
    $ sudo chown -R lit:lit /data/lit /data/loop /data/pool /data/faraday
    
  • Add the “admin” user to the “lit” group

    $ sudo adduser admin lit
    
  • With the “admin” user, create symlinks to the Lightning Terminal, Loop, Pool and Faraday directories

    $ ln -s /data/lit /home/admin/.lit
    $ ln -s /data/loop /home/admin/.loop
    $ ln -s /data/pool /home/admin/.pool
    $ ln -s /data/faraday /home/admin/.faraday
    
  • Display the links and check that they’re not shown in red (this would indicate an error)

    $ ls -la
    
  • Open a “lit” user session

    $ sudo su - lit
    
  • Create symlinks to the LND, Lightning Terminal, Loop, Pool and Faraday directories

    $ ln -s /data/lnd /home/lit/.lnd
    $ ln -s /data/lit /home/lit/.lit
    $ ln -s /data/loop /home/lit/.loop
    $ ln -s /data/pool /home/lit/.pool
    $ ln -s /data/faraday /home/lit/.faraday
    
  • Display the links and check that they’re not shown in red (this would indicate an error)

    $ ls -la
    

Configuration

The Lightning Terminal daemon (litd) has its own configuration file. The settings for Pool, Faraday, Loop can all be put in the configuration file

  • Still with the “lit” user, create the configuration file and paste the following content (set the uipassword with your password [E] and paste password [B] as required in the Faraday section). Save (Ctrl+o) and exit (Ctrl+x).

    $ cd ~/.lit
    $ nano lit.conf
    
    # RaspiBolt: Lightning Terminal configuration
    # /home/lit/.lit/lit.conf
      
    #######################
    # Application Options #
    #######################
      
    # The host:port to listen for incoming HTTP/2 connections on for the web UI only. (default:127.0.0.1:8443)
    httpslisten=0.0.0.0:8443
      
    # Your password for the UI must be at least 8 characters long
    uipassword=Password[E]
    
    # Remote options
    remote.lit-debuglevel=debug
    
    # Remote lnd options
    remote.lnd.rpcserver=127.0.0.1:10009
    remote.lnd.macaroonpath=~/.lnd/data/chain/bitcoin/mainnet/admin.macaroon
    remote.lnd.tlscertpath=~/.lnd/tls.cert
      
    #################
    #     Loop      #
    #################
      
    loop.loopoutmaxparts=5
      
    #################
    #     Pool      #
    #################
      
    # This option avoids the creation of channels with nodes with whom you already have a channel (set to 0 if you don't mind)
    pool.newnodesonly=1
    # Path to Pool's own macaroon
    pool.macaroonpath=~/.pool/mainnet/pool.macaroon
        
    ##################
    #     Faraday    #
    ##################
      
    # If connect_bitcoin is set to 1, Faraday can connect to a bitcoin node (with --txindex set) to provide node accounting services
    faraday.connect_bitcoin=1
    # The minimum amount of time that a channel must be monitored for before recommending termination
    faraday.min_monitored=72h
    # Path to Faraday's own macaroon
    faraday.macaroonpath=~/.faraday/mainnet/faraday.macaroon
        
    ###################
    # Faraday-Bitcoin #
    ###################
      
    # The Bitcoin node IP is the IP address of the Raspibolt, i.e. an address like 192.168.0.20
    faraday.bitcoin.host=192.168.0.20
    # bitcoin.user provides to Faraday the bicoind RPC username, as specified in our bitcoin.conf
    faraday.bitcoin.user=raspibolt
    # bitcoin.password provides to Faraday the bitcoind RPC password, as specified in our bitcoin.conf
    faraday.bitcoin.password=Password[B]
    

🔍 Notice that the options for Faraday, Loop and Pool can be set in this configuration file but you must prefix the software with a dot as we made here. Use samples configuration files shown in github repo of each software for more options

  • Lightning Terminal 0.9.1+ requires RPC Middleware to be enabled, therefore we switch to user lnd to adjust lnd.conf

    $ exit
    $ sudo su - lnd
    $ nano /data/lnd/lnd.conf
    
  • Append the following at the end of the file (mind that this setting is only available in lnd-0.16.0-beta and newer!)

    [rpcmiddleware]
    rpcmiddleware.enable=true
    
  • Also if not already present, set rpclisten parameter in section [Application Options]

    rpclisten=0.0.0.0:10009
    
  • Save (Ctrl+O) and exit (Ctrl+X).

  • Switch to “admin” to restart LND

 $ exit
 $ sudo systemctl restart lnd.service
  • Switch back to user “lit”

    $ sudo su - lit
    

Run Lightning Terminal

Manual start

  • With user “lit”, we first start Lightning Terminal manually to check if everything works fine.

    $ litd
    
  • Test that Lightning Terminal is working by visiting the web UI
    • Past the following URL in your browser: https://raspibolt.local:8444/ (replace raspibolt.local by your node IP address if required)
    • Note that the first time you connect, your browser will display a warning due to the fact the SSL certificate is self-generated. On Firefox, simply click “Advanced” and then “Accept the risks and continue” (or similar wording in other browsers)
    • Enter password [E] when prompted.
    • (Optional) Follow the walkthrough to have a first introduction to Lightning Terminal GUI. Otherwise, click “No thanks” to skip it.
  • Close the browser window, go back to the terminal and stop Lightning Terminal by pressing Ctrl+C. Then exit the “lit” user.

    $ exit
    

Autostart on boot

Now we’ll make sure Lightning Terminal starts as a service on the Raspberry Pi so it’s always running. In order to do that, we create a systemd service file that starts Lightning Terminal on boot directly after LND.

  • Create the Lightning Terminal systemd service with the following content. Save and exit.

    $ sudo nano /etc/systemd/system/litd.service
    
    # RaspiBolt: systemd unit for litd
    # /etc/systemd/system/litd.service
      
    [Unit]
    Description=Lightning Terminal Daemon
    After=lnd.service
      
    [Service]
      
    # Service execution
    ###################
    ExecStart=/usr/local/bin/litd
      
    # Process management
    ####################
    Type=simple
    Restart=always
    RestartSec=30
    TimeoutSec=240
    LimitNOFILE=128000
      
    # Directory creation and permissions
    ####################################
    User=lit
      
    # Hardening measures
    ####################
    # Provide a private /tmp and /var/tmp.
    PrivateTmp=true
      
    # Mount /usr, /boot/ and /etc read-only for the process.
    ProtectSystem=full
      
    # Disallow the process and all of its children to gain
    # new privileges through execve().
    NoNewPrivileges=true
      
    # Use a new /dev namespace only populated with API pseudo devices
    # such as /dev/null, /dev/zero and /dev/random.
    PrivateDevices=true
      
    # Deny the creation of writable and executable memory mappings.
    MemoryDenyWriteExecute=true
      
    [Install]
    WantedBy=multi-user.target
    
  • Enable and start the service and check its status and logging output

    $ sudo systemctl enable litd
    $ sudo systemctl start litd
    $ sudo systemctl status litd
    >* litd.service - Lightning Terminal Daemon
    >   Loaded: loaded (/etc/systemd/system/litd.service; enabled; vendor preset: enabled)
    >   Active: active (running) since Mon 2021-12-27 19:16:10 GMT; 22h ago
    > [...]
    
  • Check the live logging activity. Press Ctrl+C to exit.

    $ sudo journalctl -f -u litd
    

Aliases

For now, software packaged in Lightning Terminal are all listening to the same port 8443. This is not the default behavior set in the code of these softwares so you must always indicate the RPC port as well as the TLS certificate of Lightning Terminal when using them, using flags (e.g., pool --rpcserver=localhost:8443 --tlscertpath=~/.lit/tls.cert accounts list, do not try it now as Lightning Terminal is not running yet!).

Rather than always typing the flags, we can create aliases for the “admin” user.

  • With user “admin”, create an alias file and paste the following line. Save and exit.

    $ cd
    $ nano .bash_aliases
    
    ######################
    # Lightning Terminal #
    ######################
      
    alias litfaraday="frcli --rpcserver=localhost:8443 --tlscertpath=~/.lit/tls.cert"
    alias litloop="loop --rpcserver=localhost:8443 --tlscertpath=~/.lit/tls.cert"
    alias litpool="pool --rpcserver=localhost:8443 --tlscertpath=~/.lit/tls.cert" 
    
  • Activate the aliases

    $ source .bashrc
    
  • To use Loop, Pool or Faraday from the CLI, use the alias followed by the desired command (e.g., litpool accounts list, much simpler!)### Aliases

Settings

  • Log in to your Lightning Terminal by pasting https://raspibolt.local:8444/ in your web browser (replace rapsibolt.local by your node IP address if needed).

  • In the left menu, click on “Settings”

  • Click on “Channel balance mode”, make a selection according to your LN node type
    • Merchant: “Receiving”
    • Casual end user: “Sending”
    • Routing node: “Routing”
  • Go back to “Settings”

  • Click on “Bitcoin Transaction URL” and replace the default URL https://mempool.space/tx/{txid} by your own explorer: https://raspibolt.local:4000/tx/{txid}. Replace raspibolt.local by your node IP if necessary. This will preserve your privacy when looking up transactions from the Terminal.

  • Optional: Replace the default Lightning Node URL https://1ml.com/node/{pubkey} by the Amboss explorer: https://amboss.space/node/{pubkey}

  • Click “Save changes”

Lightning Node Connect

web-terminal

Introduction

Lightning Node Connect allows to connect to Lightning Terminal and the node from the web via Lightning Lab’s web Terminal. Like, the Lightning Terminal web UI, the Terminal dashboard offers an overview of the channels and the Loop and Pool services but it also offers an health check and ranking information, gives a summary of recent routing and payment events and payments can be made and received. For more information, check out the Lightning Labs blog post announcement.

Note: Contrary to the Lightning Terminal web UI that can only be accessed in your LAN, the web Terminal can be used (securely) from anywhere.

How to connect

  • Log in to your Lightning Terminal by pasting https://raspibolt.local:8444/ in your web browser (replace raspibolt.local by your node IP address if needed).
  • In the left menu, click on “Lightning Node Connect”
  • Click on the “Create a new session” button and choose a name (e.g. test #1)
  • Click the “Submit” button, a pairing phrase will be copied to your clipboard
  • Open Lightning Labs web Terminal in a new tab in your browser: https://terminal.lightning.engineering/#/
  • Click on the “Connect to my node” button in the top right corner
  • Paste the pairing phrase in the box
  • Click “Connect” (if it fails, reload the page, create a new session/pairing phrase and try again)
  • Paste your Password [F] (twice)

Congrats! You’ve connected your node to the web Terminal and can now manage it from anywhere.


Lightning Terminal in action

Loop

Loop is a non-custodial service offered by Lightning Labs that makes it easy to move bitcoin into and out of the Lightning Network: deposit to a Bitcoin address without closing channels with Loop In, convert outbound liquidity into inbound liquidity with Loop Out, refill depleted Lightning channels with Loop In.

You can loop in/out using the CLI (check litloop --help), the Lightning Terminal, the web Terminal or the Ride The Lightning web UI (see next section of the guide)

Pool

Pool is a marketplace for Lightning channels. You can rent a channel when you need inbound liquidity or earn an income by leasing a channel.

Pool requires to fund an account from your LND onchain wallet. This account will be used to draw the sats required to open channels and pay the Pool fees. Make sure you fund your LND wallet with at least the amount of sats you’d like to have in your Pool account. Note that using Pool will trigger the automatic creation of an LSAT identification token that costs 1,000 sats.

You can use Pool using the CLI (check litpool --help), the Lightning Terminal or the web Terminal.

Faraday

Faraday is a suite of accounting CLI-based tools for LND node operators.


Optional: Set up the Loop service in Ride The Lightning

If you have installed Ride The Lightning, you can use the Loop submarine swap service directly from the RTL GUI:

  • Go to the navigation menu in the top left (if it’s hidden, click on the hamburger symbol)
  • Click on “Node Config”
  • Click on the “Services” tab
  • If it’s disabled, click on “Enable Loop service”
  • In “Loop Server URL”, replace https://localhost:8081 by https://localhost:8443
  • In “Loop Macaroon Path”, the path should be /home/lit/.loop/mainnet
  • Then click the “Update” button
  • Go back to the navigation menu and click on “Services”, then “Loop”
  • You can now perform loop ins and loop outs directly from RTL

Upgrade

  • Check your Lightning Terminal version

    $ litd --lnd.version
    > Example output: litd version {VERSION}-beta commit=lightning-terminal-{VERSION}-alpha
    
  • Read the release notes in case there is any breaking change to be aware of.

  • Stop the Lightning Terminal systemd service

    $ sudo systemctl stop litd
    
  • Install the new version following the same installation process explained in this guide here

  • Restart the service

    $ sudo systemctl start litd
    

Uninstall

🚨 Warning: Before uninstalling Lightning Terminal, you might want to make sure that there is no ongoing channel leases or LOOP swaps and that you’ve closed your Pool account. You might also want to make some backup of key files (LSAT token, databases etc) located in the /data directories).

  • As “admin”, stop and disable the systemd service and then delete the service file

    $ sudo systemctl stop litd
    $ sudo systemctl disable litd
    $ cd /etc/systemd/system
    $ sudo rm litd.service
    
  • Remove the Lightning Terminal binaries

    $ cd /usr/local/bin
    $ sudo rm frcli litcli litd loop pool
    
  • Remove the “admin” user symlinks

    $ cd ~/
    $ rm .faraday .lit .loop .pool
    
  • Remove the /data Lighting Terminal, Loop, Pool and Faraday directories

    $ cd /data
    $ sudo rm -R faraday lit loop pool
    
  • Remove (or comment out) the aliases from the .bash_aliases file

    $ nano .bash_aliases
    
    #alias litfaraday="frcli --rpcserver=localhost:8443 --tlscertpath=~/.lit/tls.cert"
    #alias litloop="loop --rpcserver=localhost:8443 --tlscertpath=~/.lit/tls.cert"
    #alias litpool="pool --rpcserver=localhost:8443 --tlscertpath=~/.lit/tls.cert" 
    
  • Finally, with the “root” user, delete the “lit” user

    $ sudo su -
    $ userdel -r lit
    




« Back: + Lightning