Created
July 4, 2019 16:00
-
-
Save jromero/388523162bb1374f7307364bbe89cd2b to your computer and use it in GitHub Desktop.
Setup nano node on Centos 7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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