Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions installnode.sh
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,12 @@ MINER=https://github.com/kadena-io/chainweb-miner/releases/download/v1.0.3/chain

decho 'Downloading Node...'
mkdir -p /root/kda
cd /root/kda/
wget --no-check-certificate $NODE >> $LOG_FILE 2>&1
tar -xvf chainweb-2.1.1.ghc-8.8.4.ubuntu-18.04.d99165c.tar.gz >> $LOG_FILE 2>&1
wget --no-check-certificate $MINER >> $LOG_FILE 2>&1
tar -xvf chainweb-miner-1.0.3-ubuntu-18.04.tar.gz >> $LOG_FILE 2>&1
cd /root/kda
systemctl stop kadena-node
rm chainweb-node
wget https://github.com/kadena-io/chainweb-node/releases/download/2.1.1/chainweb-2.1.1.ghc-8.8.4.ubuntu-18.04.d99165c.tar.gz
tar -xvf chainweb-2.1.1.ghc-8.8.4.ubuntu-18.04.d99165c.tar.gz
systemctl start kadena-node

# Create config.yaml
decho "Creating config files and Health check..."
Expand Down