Skip to content

Instantly share code, notes, and snippets.

@jromero
Created July 4, 2019 16:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jromero/388523162bb1374f7307364bbe89cd2b to your computer and use it in GitHub Desktop.
Save jromero/388523162bb1374f7307364bbe89cd2b to your computer and use it in GitHub Desktop.
Setup nano node on Centos 7
# 1. add repo
sudo yum-config-manager --add-repo https://repo.nano.org/nanocurrency.repo
# 2. install
sudo yum install nanocurrency
# 3. start
sudo systemctl start nanocurrency
# 4. enable rpc - set "rpc_enable" to "true"
sudo vim /var/nanocurrency/Nano/config.json
# 5. restart to take effect
sudo systemctl restart nanocurrency
# optional: check status
curl -g -d '{ "action" : "block_count" }' localhost:7076
# 6. enable to start at boot
sudo systemctl enable nanocurrency
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment