X-Git-Url: https://git.novaco.in/?p=electrum-server.git;a=blobdiff_plain;f=HOWTO.md;h=51f30c74a68219d0d11c143433fc2a4ba7de63fc;hp=ac0cd48d3701cea6f0b7f926cd2ae48db8aaa229;hb=4ce69b7ea24ead59ebbcc7ed335ea9762ae3724b;hpb=3c336f83c39fe77ac4cb26f2efd3f2ec262cf0ad diff --git a/HOWTO.md b/HOWTO.md index ac0cd48..51f30c7 100644 --- a/HOWTO.md +++ b/HOWTO.md @@ -97,11 +97,22 @@ our ~/bin directory: $ chmod +x ~/src/electrum/server/server.py $ ln -s ~/src/electrum/server/server.py ~/bin/electrum-server -### Step 3. Download Bitcoind +### Step 3. Download bitcoind Older versions of Electrum used to require a patched version of bitcoind. This is not the case anymore since bitcoind supports the 'txindex' option. -We currently recommend bitcoind 0.8.5 stable. +We currently recommend bitcoind 0.8.5 stable. + +If your package manager does not supply a recent bitcoind and prefer to compile +here are some pointers for Ubuntu: + + $ cd ~/src && wget http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.8.5/bitcoin-0.8.5-linux.tar.gz + $ tar xfz bitcoin-0.8.5-linux.tar.gz + $ cd bitcoin-0.8.5-linux/src/src + $ sudo apt-get install make g++ python-leveldb libboost-all-dev libssl-dev libdb++-dev + $ make USE_UPNP= -f makefile.unix + $ strip ~/src/bitcoin-0.8.5-linux/src/src/bitcoind + $ ln -s ~/src/bitcoin-0.8.5-linux/src/src/bitcoind ~/bin/bitcoind ### Step 4. Configure and start bitcoind @@ -119,7 +130,13 @@ Write this in `bitcoin.conf`: daemon=1 txindex=1 -Restart `bitcoind`: + +If you have an existing installation of bitcoind and have not previously +set txindex=1 you need to reindex the blockchain by running + + $ bitcoind -reindex + +If you have a fresh copy of bitcoind start `bitcoind`: $ bitcoind