chaeplin
Well-known member
* Use this guide only for EC2 instance with Security-Group
* Using this guide on non-EC2 instances is very dangerous ( Especially iptables )
* This guide is valid for RC3(local/remote setup)
* local is home linux cold wallet holding 1K DRK
* remote is server with empty wallet
I. Part 1/3 EC2 Setup
https://darkcointalk.org/threads/how-to-set-up-ec2-t1-micro-ubuntu-for-masternode-part-1-3.240/
II. Part 2/3 AMI Setup
https://darkcointalk.org/threads/how-to-set-up-ec2-t1-micro-ubuntu-for-masternode-part-2-3.241/
https://darkcointalk.org/threads/how-to-set-up-ec2-t1-micro-ubuntu-for-masternode-part-2-3-2.1754/
III. Part 3/3 Masternode update
https://darkcointalk.org/threads/how-to-set-up-ec2-t1-micro-ubuntu-for-masternode-part-3-3.262/
[Update dakcoind]
1. login ec2, check pwd and cd .darkcoin/
2. download darkcoind
Visit https://www.darkcoin.io/getstarted.html
Download latest vesrion of Masternode(Currentely RC version)
Or visit https://github.com/darkcoinproject/darkcoin-binaries/tree/master/rc
3. check downloaded file and test it's ok
4. stop darkcoind
5. replace
6. start darkcoind
7. check running
* Using this guide on non-EC2 instances is very dangerous ( Especially iptables )
* This guide is valid for RC3(local/remote setup)
* local is home linux cold wallet holding 1K DRK
* remote is server with empty wallet
I. Part 1/3 EC2 Setup
https://darkcointalk.org/threads/how-to-set-up-ec2-t1-micro-ubuntu-for-masternode-part-1-3.240/
II. Part 2/3 AMI Setup
https://darkcointalk.org/threads/how-to-set-up-ec2-t1-micro-ubuntu-for-masternode-part-2-3.241/
https://darkcointalk.org/threads/how-to-set-up-ec2-t1-micro-ubuntu-for-masternode-part-2-3-2.1754/
III. Part 3/3 Masternode update
https://darkcointalk.org/threads/how-to-set-up-ec2-t1-micro-ubuntu-for-masternode-part-3-3.262/
[Update dakcoind]
1. login ec2, check pwd and cd .darkcoin/
ubuntu@ec2:~$ pwd
/home/ubuntu
ubuntu@ec2:~$ cd ~/.darkcoin/
ubuntu@ec2:~/.darkcoin$ ls
blocks chainstate darkcoin.conf darkcoind darkcoind.pid database db.log debug.log peers.dat wallet.dat
ubuntu@ec2:~/.darkcoin$ ls -la /usr/bin/darkcoind
lrwxrwxrwx 1 root root 32 Apr 10 20:13 /usr/bin/darkcoind -> /home/ubuntu/.darkcoin/darkcoind
Code:
pwd
cd ~/.darkcoin/
pwd
ls -la
ls -la /usr/bin/darkcoind
2. download darkcoind
Visit https://www.darkcoin.io/getstarted.html
Download latest vesrion of Masternode(Currentely RC version)
Or visit https://github.com/darkcoinproject/darkcoin-binaries/tree/master/rc
cd ~/.darkcoin
wget https://github.com/darkcoinproject/darkcoin-binaries/raw/master/rc/darkcoin-0.10.11.6-linux.tar.gz
tar xfvz darkcoin-0.10.11.6-linux.tar.gz
cp darkcoin-0.10.11.6-linux/bin/64/darkcoind darkcoind.1
Code:
cd ~/.darkcoin
wget https://github.com/darkcoinproject/darkcoin-binaries/raw/master/rc/darkcoin-0.10.11.6-linux.tar.gz
tar xfvz darkcoin-0.10.11.6-linux.tar.gz
cp darkcoin-0.10.11.6-linux/bin/64/darkcoind darkcoind.1
3. check downloaded file and test it's ok
ubuntu@ec2:~/.darkcoin$ ls -la darkcoind.1
ubuntu@ec2:~/.darkcoin$ chmod 755 darkcoind.1
ubuntu@ec2:~/.darkcoin$ ./darkcoind.1 --help
DarkCoin version v0.10.3.4-18-g0f787e5-beta
Code:
ls -la darkcoind.1
chmod 755 darkcoind.1
./darkcoind.1 --help
4. stop darkcoind
ubuntu@ec2:~/.darkcoin$ darkcoind stop
DarkCoin server stopping
Code:
darkcoind stop
5. replace
ubuntu@ec2:~/.darkcoin$ mv darkcoind darkcoind.old
ubuntu@ec2:~/.darkcoin$ mv darkcoind.1 darkcoind
Code:
mv darkcoind darkcoind.old
mv darkcoind.1 darkcoind
6. start darkcoind
ubuntu@ec2:~/.darkcoin$ darkcoind
ubuntu@ec2:~/.darkcoin$ DarkCoin server starting
Code:
darkcoind
7. check running
ubuntu@ec2:~/.darkcoin$ tail -f debug.log
Code:
darkcoind getbalance
darkcoind getinfo
tail -f debug.log
Last edited by a moderator: