#
riecoin# your wallet in the cloud - compile and install from github sources# I succeeded with this on Ubuntu 12.04 and Debian 7.0 x64
# Create your cheap linux virtual server (VPS) in the cloud in 55seconds
# Buy 10$ droplet e.g. at digital ocean
http://tiny.cc/digocean NL USA Singapur
# You can build your riecoind wallet on that server.
# Instructions are the same as above, just replace all occurences of "duckduckcoin" with "riecoin".
# If your server is brand new, you need to prep it for compilation & building, just do
everything in posting #1 until "get the wallet source", then continue here:
# to make sure that our old db4.8 is found during the compilation:
export BDB_INCLUDE_PATH="/usr/local/BerkeleyDB.4.8/include"
export BDB_LIB_PATH="/usr/local/BerkeleyDB.4.8/lib"
# get the wallet source, compile and build, and copy the binary to ~/riecoin/riecoind
cd ~
git clone
https://github.com/riecoin/riecoincd ~/riecoin/src
make -f makefile.unix
cp riecoind ..
# now that the compilation is done,
to save money,
# you can power down the droplet,
# resize it to 0.5GB of RAM (
5$ per month),
# and power up again
#
create a config file (copy paste all in one go):
cd ~
mkdir ~/.riecoin
cat << "CONFIG" >> ~/.riecoin/riecoin.conf
gen=0
listen=1
server=1
testnet=0
rpcport=28332
port=28333
rpcuser=riecoinuser
rpcpassword=yoursooperdooperpasswordhighlysecure
rpcallowip=127.0.0.1
addnode=107.170.26.188
addnode=107.170.32.187:28333
addnode=107.170.37.13
addnode=107.170.40.168:28333
addnode=108.161.145.12:28333
addnode=128.199.253.233
addnode=162.243.118.47:28333
addnode=162.243.208.55
addnode=162.248.98.162
addnode=173.193.48.174
addnode=182.32.194.1
addnode=192.241.129.169
addnode=194.97.156.59:28333
addnode=195.47.113.76:28333
addnode=198.144.180.117
addnode=198.144.180.118
addnode=198.98.52.244:28333
addnode=213.239.207.114:28333
addnode=5.83.137.130:28333
addnode=5.83.137.131:28333
addnode=54.197.67.63
addnode=54.198.193.96:28333
addnode=54.204.214.12
addnode=54.234.17.173
addnode=54.237.23.244:28333
addnode=62.210.141.204:28333
addnode=64.79.107.5
addnode=67.225.172.77
addnode=76.102.71.50
addnode=77.172.93.38:28333
addnode=79.135.200.61
addnode=81.27.206.10:28333
addnode=95.138.166.108
addnode=95.138.166.126:28333
addnode=98.121.202.169
CONFIG
#
Start the server:~/riecoin/riecoind &
# unfortunately does not answer with: riecoin server starting, but if the following works we know that it is running:
#
most important RPC API commands to control your accounts~/riecoin/riecoind getbalance
~/riecoin/riecoind getinfo
~/riecoin/riecoind getnewaddress forDonations
~/riecoin/riecoind listtransactions forDonations
#
the full list of commands~/riecoin/riecoind help
#
If you liked this tutorial, send me some riecoins, to try out your new abilities:./riecoin/riecoind sendtoaddress RLEvAAHaAnK4yKKuQCnw5houVTds3bhZR3 1.234 ThankYouForYourTutorial
# or in other currencies at
www.tiny.cc/drakointip#
