Guys here is the guide on how to mine this coin STEP BY STEP.
HOW TO MINE GUIDEOPEN PORT 8000 tcp/udp in your sever
sudo mkdir /data/db -p
sudo chmod 777 /data/db
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 2930ADAE8CAF5059EE73BB4B58712A2291FA4AD5
sudo echo "deb [ arch=amd64,arm64 ]
https://repo.mongodb.org/apt/ubuntu xenial/mongodb-org/3.6 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.6.list
sudo apt update
sudo apt install -y mongodb-org
sudo systemctl enable mongod.service
sudo systemctl start mongod.service
sudo apt install libxml2-dev libxmlsec1-dev
cd ~
git clone
https://github.com/pdxwebdev/yadacoin.gitcd yadacoin
sudo apt install python-pip
sudo pip install virtualenv
virtualenv venv
source venv/bin/activate
pip install -r requirements.txt
COPY THE PRIVATE KEY AND PUBLIIC KEY and addresspython utils/generate_config.py > config/config.json
now CLOSE the actual instance and open THREE NEW ones
in the first one write this:
cd ~/yadacoin
source venv/bin/activate
./scripts/start_mine.sh
In the second write this
cd ~/yadacoin
source venv/bin/activate
./scripts/start_consensus.sh
In the third this
cd ~/yadacoin
source venv/bin/activate
./scripts/start_serve.sh
You are mining now.
If you want to run the 3 instances in abckground and also have them auto start when the system boot then follow this other add-on guide:Open a new ssh
cd ~/yadacoin
source venv/bin/activate
git pull origin master
python utils/generate_services.py
sudo cp services/* /lib/systemd/system/.
sudo systemctl daemon-reload
sudo systemctl enable yadacoin-serve
sudo systemctl enable yadacoin-mine
sudo systemctl enable yadacoin-consensus
sudo service yadacoin-mine start
sudo service yadacoin-consensus start
sudo service yadacoin-serve start