Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[feat] CLN Migrations #106

Open
3 tasks
kn0wmad opened this issue Dec 18, 2023 · 1 comment
Open
3 tasks

[feat] CLN Migrations #106

kn0wmad opened this issue Dec 18, 2023 · 1 comment

Comments

@kn0wmad
Copy link
Contributor

kn0wmad commented Dec 18, 2023

https://docs.corelightning.org/docs/recovery

  • Umbrel
  • Raspiblitz
  • myNode
@dennisreimann
Copy link

dennisreimann commented Jun 2, 2024

Here's how I migrated a CLN node from my Raspiblitz to StartOS, keeping the channels alive:

Preparation

On StartOS, set up SSH key for the root user:

# Switch to root
sudo su -
# Generate key
ssh-keygen -t ed25519 -C "root@startOS"
# Add the key to the SSH agent
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_ed25519
# Show the public key
cat /root/.ssh/id_ed25519.pub

Copy the public key and switch to the Raspiblitz:

# Add StartOS public key to root's authorized_keys - edit the file and insert the copied key
sudo vim /root/.ssh/authorized_keys
# Stop Core Lightning on Raspiblitz
./config.scripts/cl.install.sh off

The last step, stopping Core Lightning on Raspiblitz, is very important. Ensure it is stopped using sudo systemctl status lightningd.service!

Fresh start of CLN on StartOS

Before migrating, I brought up a fresh install of CLN on StartOS, so that I knew where to copy stuff. Not sure if this is necessary, but I did it like this to ensure the directories are setup correctly and I'd advise you to do the same.

Once CLN starts up correctly, stop it on StartOS as well.

Copying the files over

  • From Raspiblitz: /mnt/hdd/app-data/.lightning/bitcoin/
  • To StartOS: /embassy-data/package-data/volumes/c-lightning/data/main/bitcoin/

On StartOS CLI:

# Switch to root
sudo su -
# Enter the CLN main directory
cd /embassy-data/package-data/volumes/c-lightning/data/main/
# Just in case, backup the original files
cp -r bitcoin bitcoin-backup-original
# copy files over
scp -r root@YOUR_RASPIBLITZ_IP:/mnt/hdd/app-data/.lightning/bitcoin/* bitcoin

You might not need to copy all the files, these are the ones you'll want at least though:

  • accounts.sqlite3
  • emergency.recover
  • gossip_store
  • hsm_secret
  • lightningd.sqlite3
  • keys.clboss (in case you've used clboss on Raspiblitz)

You might want to also adapt the config file to fit what you had before on Raspiblitz. Compare these files and adjust them, e.g. by replacing the StartOS alias with the one you had on Raspiblitz:

  • Raspiblitz: /mnt/hdd/app-data/.lightning/config
  • StartOS: /embassy-data/package-data/volumes/c-lightning/data/main/config

Bring up CLN on StartOS again

Afterwards I simply restarted CLN on StartOS and kept an eye on the Core Lightning Service Logs.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants