News:

Are you new to Groestlcoin and have questions you are afraid to ask?
Check out the New Users board and post there.
Welcome to all newcomers.

Main Menu

How to setup a GRS ElectrumX server

Started by jackielove4u, June 06, 2017, 04:00:51 PM

Previous topic - Next topic

jackielove4u

The following were tested in Ubuntu 16.04, some dependencies can be different in other distros

    • apt-get update -y && apt-get upgrade -y && apt-get dist-upgrade -y
    • dd if=/dev/zero of=/swapfile bs=1M count=4096
    • mkswap /swapfile
    • swapon /swapfile
    • echo "/swapfile swap swap defaults 0 0" >> /etc/fstab
    • sudo apt-get install build-essential libssl-dev libboost-all-dev libdb5.3 libdb5.3-dev libdb5.3++-dev libtool automake libevent-dev bsdmainutils -y
    • sudo apt-get install git ntp make g++ gcc autoconf cpp ngrep iftop sysstat autotools-dev pkg-config libminiupnpc-dev libzmq3-dev -y
    • sudo apt-get install libgmp-dev libsqlite3-dev python python3 net-tools zlib1g-dev gettext jq -y
    • git clone https://github.com/groestlcoin/groestlcoin
    • cd groestlcoin
    • ./autogen.sh
    • ./configure
    • make
    • strip src/groestlcoind src/groestlcoin-cli src/groestlcoin-tx src/groestlcoin-wallet src/groestlcoin-util
    • sudo mv src/groestlcoind src/groestlcoin-cli src/groestlcoin-tx src/groestlcoin-wallet src/groestlcoin-util /usr/bin
    • mkdir ~/.groestlcoin
    • nano ~/.groestlcoin/groestlcoin.conf
    • write:
      listen=1
      server=1
      maxconnections=863
      daemon=1
      txindex=1
      blockfilterindex=1
      coinstatsindex=1
      rpcuser=yourusernamehere
      rpcpassword=yourpasswordhere
    • Crtl+o enter, ctrl X
    • groestlcoind
    • Let it sync (can take up to 1 hour), verify with groestlcoin-cli getinfo
    • cd ~
    • git clone https://github.com/Groestlcoin/electrumx-grs-installer.git
    • cd electrumx-grs-installer
    • sudo -H ./install.sh
    • nano /etc/electrumx.conf
    • Add these:
      COIN = Groestlcoin
      SERVICES=tcp://:51001,ssl://:51002,wss://:51004
      REPORT_SERVICES=tcp://yourhost:51001,ssl://YourHost:51002
    • Crtl+o enter, ctrl X
    • service electrumx-grs start
    • add your server on https://1209k.com/bitcoin-eye/ele.php?chain=grs

check logs with: journalctl -u electrumx-grs -f