Skip to content

bank-ezy-developer/bank-ezy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BEZCoin

What is BEZ? - Get more information here: https://bank-ezy.com

BEZCoin Node Source Code

Guide: Compiling BEZCoin daemon in Ubuntu Linux

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.

Set up a swapfile if your system has less than 1.5GB of memory:

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

Install all required dependencies:

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

Pull the source code from github, or upload it yourself:

git clone https://github.com/bank-ezy-developer/bank-ezy.git

compile leveldb:

cd /BEZCoin/src/leveldb
chmod +x build_detect_platform
make clean
make libleveldb.a libmemenv.a

Return to source directory, and compile the daemon:

cd /BEZCoin/src
make -f makefile.unix

Strip the file to make it smaller, then relocate it:

strip BEZCoind
cp BEZCoind /usr/bin

Now run the daemon:

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.

About

Bank-ezy coin core

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors