What is BEZ? - Get more information here: https://bank-ezy.com
This guide will assist you in compiling a headless client (the daemon) for BEZCoin in Ubuntu Linux. This is a necessary step if you wish to set up a node for BEZCoin. It is assumed that you are starting on a fresh Ubuntu (14.04 x64) installation.
You will need a server with at least 512MB of RAM and 20GB Hard Drive.
fallocate -l 2G /swapfile
chown root:root /swapfile
chmod 0600 /swapfile
mkswap /swapfile
swapon /swapfile
If fallocate doesn’t work, you can use dd if=/dev/zero of=/swapfile bs=1024 count=1024288 instead.
Initialize swapfile automatically on boot
nano /etc/fstab
Add this at the bottom: /swapfile none swap sw 0 0
apt-get update && apt-get upgrade
apt-get install ntp unzip git build-essential libssl-dev libdb-dev libdb++-dev libboost-all-dev libqrencode-dev aptitude && aptitude install miniupnpc libminiupnpc-dev
git clone https://github.com/bank-ezy-developer/bank-ezy.git
cd /BEZCoin/src/leveldb
chmod +x build_detect_platform
make clean
make libleveldb.a libmemenv.a
cd /BEZCoin/src
make -f makefile.unix
strip BEZCoind
cp BEZCoind /usr/bin
BEZCoind
It will return an error, telling you to set up config file in a directory. Now we’ll set up the config file. Note that this is case sensitive.
nano ~/.BEZCOIN/BEZCOIN.conf
Add the following, save and exit:
daemon=1
server=1
rpcuser=(username)
rpcpassword=(strong password)
Run BEZCoind once more and if you did everything correctly, your daemon is now online! Type BEZCoind help for a full list of commands available.