nix-bitcoin/README.md

181 lines
8.3 KiB
Markdown
Raw Normal View History

2018-12-06 08:01:01 -08:00
nix-bitcoin
===
2019-01-22 13:12:19 -08:00
Nix packages and nixos modules with profiles for easily installing Bitcoin nodes and higher layer protocols.
2019-01-26 09:53:58 -08:00
This is a work in progress - don't expect it to be bug free or secure.
2019-01-26 10:42:04 -08:00
The 'full' profile right now sets up a Bitcoin Core node and c-lightning, accessable with a smartphone using spark-wallet.
A simple webpage shows the lightning nodeid and links to nanopos allowing to receive donations.
It also includes liquid-daemon.
2019-01-26 14:11:16 -08:00
Outbound peer-to-peer traffic is forced through Tor and listening services are bound to onion addresses.
2019-01-26 10:42:04 -08:00
2019-01-26 14:11:16 -08:00
A demo installation is running at [http://6tr4dg3f2oa7slotdjp4syvnzzcry2lqqlcvqkfxdavxo6jsuxwqpxad.onion](http://6tr4dg3f2oa7slotdjp4syvnzzcry2lqqlcvqkfxdavxo6jsuxwqpxad.onion).
The following screen cast shows how a fresh deployment of the full profile.
2019-01-26 14:16:26 -08:00
[<img src="https://asciinema.org/a/223630.png" height="300">](https://asciinema.org/a/223630/?speed=2&autoplay=1)
2018-12-06 08:01:01 -08:00
2019-01-26 10:42:04 -08:00
The goal is too make it easy to deploy a reasonably secure Bitcoin node with a usable wallet.
It should allow managing bitcoin (the currency) effectively and providing public infrastructure.
It should be a reproducible and extensible platform applications building on Bitcoin.
2018-12-06 08:01:01 -08:00
Profiles
---
2019-01-26 10:42:04 -08:00
The `nix-bitcoin.nix` module provides the two profiles "minimal" and "all":
2018-12-06 08:01:01 -08:00
* minimal
* bitcoind (pruned) with outbound connections through Tor and inbound connections through a hidden
service
* [clightning](https://github.com/ElementsProject/lightning) with outbound connections through Tor, not listening
* includes "nodeinfo" script which prints basic info about the node
* adds non-root user "operator" which has access to bitcoin-cli and lightning-cli
2018-12-06 14:39:00 -08:00
* all
2018-12-06 08:01:01 -08:00
* adds clightning hidden service
* [liquid-daemon](https://github.com/blockstream/liquid)
* [lightning charge](https://github.com/ElementsProject/lightning-charge)
2019-01-26 09:53:58 -08:00
* [electrs](https://github.com/romanz/electrs) (currently disabled)
2018-12-06 08:01:01 -08:00
* [nanopos](https://github.com/ElementsProject/nanopos)
* adds an index page using nginx to display node information and link to nanopos
2018-12-13 11:04:11 -08:00
* [spark-wallet](https://github.com/shesek/spark-wallet)
* Notes: run `nodeinfo` to get its onion address and `systemctl status spark-wallet` to get the access key.
When entering the onion address on the Android app don't forgot to prepend "http://"
2018-12-06 08:01:01 -08:00
2019-01-26 10:42:04 -08:00
The data directories of the services can be found in `/var/lib` on the deployed machines.
2018-12-06 08:01:01 -08:00
Installing profiles
---
2019-01-26 10:45:11 -08:00
The easiest way is to run `nix-shell` (on a Linux machine) in the nix-bitcoin directory and then create a [NixOps](https://nixos.org/nixops/manual/) deployment with the provided network.nix.
Fix the FIXMEs in configuration.nix and deploy with nixops in nix-shell.
2019-01-02 06:56:57 -08:00
See below for a detailed tutorial.
2018-12-06 08:01:01 -08:00
2019-01-26 09:44:36 -08:00
The profiles require 300 GB (235GB for Bitcoin blockchain + some room) of disk space and 2GB of memory.
Bitcoin Core pruning is not supported at the moment because it's not supported by c-lightning.
It's possible to use pruning but you need to know what you're doing.
2019-01-02 06:56:57 -08:00
Tutorial: install a nix-bitcoin node
---
2019-01-02 06:56:57 -08:00
Get a machine to deploy nix-bitcoin on.
This could be a VirtualBox, a machine that is already running [NixOs](https://nixos.org/nixos/manual/index.html) or a cloud provider.
Have a look at the options in the [NixOps manual](https://nixos.org/nixops/manual/).
2019-01-22 13:25:17 -08:00
There's a tutorial for installing and configuring VirtualBox in the [appendix](#appendix).
2019-01-02 06:56:57 -08:00
The following steps are meant to be run on the machine you deploy from, not the machine you deploy to.
Install Dependencies (Debian 9 stretch)
```
sudo apt-get install curl git gnupg2 dirmngr
```
Install Latest Nix with GPG Verification
```
curl -o install-nix-2.1.3 https://nixos.org/nix/install
curl -o install-nix-2.1.3.sig https://nixos.org/nix/install.sig
gpg2 --recv-keys B541D55301270E0BCF15CA5D8170B4726D7198DE
gpg2 --verify ./install-nix-2.1.3.sig
sh ./install-nix-2.1.3
. /home/user/.nix-profile/etc/profile.d/nix.sh
```
Clone this project
```
cd
git clone https://github.com/jonasnick/nix-bitcoin
cd ~/nix-bitcoin
```
Setup environment
```
2019-01-04 03:09:35 -08:00
nix-shell
```
2019-01-02 06:56:57 -08:00
Create nixops deployment in nix-shell.
When deploying in a VirtualBox you can use the provided `network-vbox.nix` file (ensure that you've created a host adaptor as explained in the appendix).
```
nixops create network.nix network-vbox.nix -d bitcoin-node
```
2019-01-02 06:56:57 -08:00
Otherwise replace it with a network file as explained in the [NixOps manual](https://nixos.org/nixops/manual/).
Adjust configuration by opening configuration.nix and removing FIXMEs.
2018-12-28 05:44:32 -08:00
2019-01-01 12:38:09 -08:00
Deploy Nixops in nix-shell
```
nixops deploy -d bitcoin-node
```
2019-01-02 06:56:57 -08:00
This will now create a nix-bitcoin node on the target machine.
2019-01-02 06:56:57 -08:00
Nixops automatically creates an ssh key for use with `nixops ssh`. Access `bitcoin-node` through ssh in nix-shell with
```
nixops ssh operator@bitcoin-node
```
2018-12-15 07:51:13 -08:00
2019-01-26 09:53:58 -08:00
Run `nodeinfo` to see your onion addresses for the webindex, spark, etc. if they are included in the profile.
2019-01-02 06:56:57 -08:00
If you change anything in the configuration you can run
```
nixops deploy -d bitcoin-node
```
in the nix-shell again to redeploy the configuration to the node.
Updating
---
2019-01-04 03:09:35 -08:00
Run `git pull` in the nix-bitcoin directory, enter the nix shell with `nix-shell` and redeploy with `nixops deploy -d bitcoin-node`.
2019-01-02 06:56:57 -08:00
2018-12-15 07:51:13 -08:00
FAQ
---
* **Q:** When deploying or trying to SSH into the machine I see
```
bitcoin-node> waiting for SSH...
Received disconnect from 10.1.1.200 port 22:2: Too many authentication failures
```
* **A:** Somehow ssh-agent and nixops don't play well together. Try killing the ssh-agent. Also make sure you don't have something like
2018-12-15 07:51:13 -08:00
```
Host *
PubkeyAuthentication no
```
in your ssh config.
* **Q:** When deploying to virtualbox for the first time I see
```
bitcoin-node> Mar 19 09:22:27 bitcoin-node systemd[1]: Started Get NixOps SSH Key.
bitcoin-node> Mar 19 09:22:27 bitcoin-node get-vbox-nixops-client-key-start[2226]: VBoxControl: error: Failed to connect to the guest property service, error VERR_INTERNAL_ERROR
bitcoin-node> Mar 19 09:22:27 bitcoin-node systemd[1]: get-vbox-nixops-client-key.service: Main process exited, code=exited, status=1/FAILURE
bitcoin-node> Mar 19 09:22:27 bitcoin-node systemd[1]: get-vbox-nixops-client-key.service: Failed with result 'exit-code'.
bitcoin-node> error: Traceback (most recent call last):
File "/nix/store/6zyvpi0q6mvprycadz2dpdqag4742y18-python2.7-nixops-1.6pre0_abcdef/lib/python2.7/site-packages/nixops/deployment.py", line 731, in worker
raise Exception("unable to activate new configuration")
Exception: unable to activate new configuration
```
* **A:** This is issue https://github.com/NixOS/nixops/issues/908. The machine needs to be rebooted. You can do that by running `nixops deploy` with the `--force-reboot` flag once.
* **Q:** I'm deploying to virtualbox it's not able to connect anymore.
* **A:** Maybe the IP address of the box changed. Run `nixops deploy --check` to update nixops with the new IP address.
* **Q:** The clightning service is running but when I try to use it (f.e. by running `lightning-cli getinfo` as user operator) all I get is `lightning-cli: Connecting to 'lightning-rpc': Connection refused`.
* **A:** Check your clightning logs with `journalctl -eu clightning`. Do you see something like `bitcoin-cli getblock ... false` failed? Are you using pruned mode? That means that clightning hasn't seen all the blocks it needs to and it can't get that block because your node is pruned. If you're just setting up a new node you can `systemctl stop clightning` and wipe your `/var/lib/clightning` directory. Otherwise you need to reindex the Bitcoin node.
* **Q:** My disk space is getting low due to nix.
* **A:** run `nix-collect-garbage -d`
2019-01-02 06:56:57 -08:00
2019-01-22 13:25:17 -08:00
# Appendix
2019-01-02 06:56:57 -08:00
Tutorial: install and configure VirtualBox for nix-bitcoin on Debian 9 Stretch
---
Add virtualbox.list to /etc/apt/sources.list.d
```
deb http://download.virtualbox.org/virtualbox/debian stretch contrib
```
Add Oracle VirtualBox public key
```
wget https://www.virtualbox.org/download/oracle_vbox_2016.asc
gpg2 oracle_vbox_2016.asc
```
Proceed _only_ if fingerprint reads B9F8 D658 297A F3EF C18D 5CDF A2F6 83C5 2980 AECF
```
sudo apt-key add oracle_vbox_2016.asc
```
Install virtualbox-5.2
```
sudo apt-get update
sudo apt-get install virtualbox-5.2
```
**IMPORTANT:** Create Host Adapter in VirtualBox
```
Open VirtualBox
File -> Host Network Manager -> Create
This should create a hostadapter named vboxnet0
```