Skip to content

Latest commit

 

History

History
62 lines (47 loc) · 1.63 KB

README.md

File metadata and controls

62 lines (47 loc) · 1.63 KB

kvant-node

Start KVANT node

Kvant is a high-performance blockchain. We recommend that you run it only with limited access for trusted administrators. Therefore, the launch of the node is from the root and to the root of the system.

wget -O kvant_installer.sh  https://raw.githubusercontent.com/kvant-development/kvant-node/master/installer.sh && \
chmod +x kvant_installer.sh && \
./kvant_installer.sh

Addons installations

wget https://github.com/google/leveldb/archive/v1.20.tar.gz && \
  tar -zxvf v1.20.tar.gz && \
  apt-get -f install build-essential make &&\
  cd leveldb-1.20/ && \
  make && \
  sudo cp -r out-static/lib* out-shared/lib* /usr/local/lib/ && \
  cd include/ && \
  sudo cp -r leveldb /usr/local/include/ && \
  sudo ldconfig && \
  rm -f ../v1.20.tar.gz

Compiling from source

Install GOLANG

wget -O go.tgz https://dl.google.com/go/go1.13.8.linux-amd64.tar.gz && \
tar xzf go.tgz && \
chown -R root:root ./go && \
mv go /usr/local && \
echo export GOPATH=/d01/go >> ~/.profile && \
echo 'export PATH=$PATH:/usr/local/go/bin:$GOPATH/bin'  >> ~/.profile && \
source ~/.profile && go version

Configuring OS

apt-get install build-essential

Download and Preparing source code

wget -O kvant_compiller.sh  https://raw.githubusercontent.com/kvant-development/kvant-node/master/compiller.sh && \
chmod +x kvant_compiller.sh && \
./kvant_compiller.sh

Web Gui

wget -O /var/www/html/index.html https://raw.githubusercontent.com/kvant-development/kvant-node/master/index.html