From e525c2922a81caf99a19ea8d05d958e952a62d42 Mon Sep 17 00:00:00 2001 From: Andoni Abedul Date: Sat, 9 May 2020 22:38:19 +0200 Subject: [PATCH] Update and rename install_guide_myNode.md to install_guide_myNode_and_Raspiblitz.md --- ... => install_guide_myNode_and_Raspiblitz.md | 32 +++++++++++++++++-- 1 file changed, 29 insertions(+), 3 deletions(-) rename install_guide_myNode.md => install_guide_myNode_and_Raspiblitz.md (80%) diff --git a/install_guide_myNode.md b/install_guide_myNode_and_Raspiblitz.md similarity index 80% rename from install_guide_myNode.md rename to install_guide_myNode_and_Raspiblitz.md index 3b72e69..b72b9aa 100644 --- a/install_guide_myNode.md +++ b/install_guide_myNode_and_Raspiblitz.md @@ -1,4 +1,4 @@ -# Guide: install Sphinx-relay on myNode. +# Guide: install Sphinx-relay on myNode / Raspiblitz. This guide is focused on installing Sphinx-relay on top of myNode. Information about myNode can be found at: https://mynodebtc.com/. @@ -48,6 +48,7 @@ $ npm install ``` ### Dependencies sqlite3: `$ apt-get install sqlite3` +python2: `$ apt-get install python2` ### Configure Edit the "production" section of config/app.json. @@ -56,13 +57,24 @@ $ cd $ cd sphinx-relay/config/ $ nano app.json ``` -Change the following 4 lines to: +Change the following 4 lines: + +# myNode ``` "macaroon_location": "/home/bitcoin/.lnd/data/chain/bitcoin/mainnet/admin.macaroon", "tls_location": "/mnt/hdd/mynode/lnd/tls.cert", "lnd_log_location": "/home/bitcoin/.lnd/logs/bitcoin/mainnet/lnd.log", "lncli_location": "/home/bitcoin/go/bin", ``` + +# Raspiblitz +``` +"macaroon_location": "/home/bitcoin/.lnd/data/chain/bitcoin/mainnet/admin.macaroon", +"tls_location": "/mnt/hdd/lnd/tls.cert", +"lnd_log_location": "/home/bitcoin/.lnd/logs/bitcoin/mainnet/lnd.log", +"lncli_location": "/home/bitcoin/go/bin", +``` + Save and exit: `Ctrl + X` @@ -97,10 +109,24 @@ For extra security: $ export USE_PASSWORD=true ``` ### Activate keysend -We need LND to run with keysend activated. First we check if it is already activated on your node. To do that. Go to http://mynode.local/lnd/config and check if the line `accept-keysend=1` is included somewhere in the text. + + +We need LND to run with keysend activated. First we check if it is already activated on your node. + +# myNode +Go to http://mynode.local/lnd/config and check if the line `accept-keysend=1` is included somewhere in the text. If `accept-keysend=1` is already included you can continue without changing anything. If `accept-keysend=1` is not included, add it to a new line and click the `Save` button. This will restart your device. (Restarting could take up to several minutes but also hours, so be patient.) +# Raspiblitz +Go to raspiblitz menu, or: + +```sh +$ raspiblitz +``` + +Find item menu "Services" and active Keysend + ### Run Now it's time to run the software.