Browse Source

Update and rename install_guide_myNode.md to install_guide_myNode_and_Raspiblitz.md

feature/dockerfile-arm
Andoni Abedul 5 years ago
committed by GitHub
parent
commit
e525c2922a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 32
      install_guide_myNode_and_Raspiblitz.md

32
install_guide_myNode.md → 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.
Loading…
Cancel
Save