Antti Kaikkonen
Active member
1) Update your server
	
	
	
		
2) Install some tools and dependencies
	
	
	
		
3) Download Dash-core
	
	
	
		
4) Install https://github.com/dashevo/dashcore-node
	
	
	
		
5) Create a configuration for your node
	
	
	
		
7) Install insight-api service
	
	
	
		
8) Change datadir and exec
	
	
	
		
Change the value of "datadir" to "../.dashcore"
Change the value of "exec" to "../dashcore-0.14.0/bin/dashd"
9) Run it
	
	
	
		
For me it started synchronizing in 5-10 minutes and finished in 1-2 hours.
				
			
		Code:
	
	sudo apt update
sudo apt upgrade
	2) Install some tools and dependencies
		Code:
	
	sudo apt install npm
sudo apt install build-essential
sudo apt install libzmq3-dev
	3) Download Dash-core
		Code:
	
	cd ~
wget https://github.com/dashpay/dash/releases/download/v0.14.0.5/dashcore-0.14.0.5-x86_64-linux-gnu.tar.gz
tar -xvzf dashcore-0.14.0.5-x86_64-linux-gnu.tar.gz
rm dashcore-0.14.0.5-x86_64-linux-gnu.tar.gz
	4) Install https://github.com/dashevo/dashcore-node
		Code:
	
	sudo npm install -g @dashevo/dashcore-node
	5) Create a configuration for your node
		Code:
	
	dashcore-node create mynode
	7) Install insight-api service
		Code:
	
	cd mynode
dashcore-node install @dashevo/insight-api
	8) Change datadir and exec
		Code:
	
	nano dashcore-node.json
	Change the value of "exec" to "../dashcore-0.14.0/bin/dashd"
9) Run it
		Code:
	
	dashcore-node start
	
			
				Last edited: