Aptos node installation guide
Aptos - the safest and most secure L1, aims to provide universal and fair access to decentralized assets for billions of people. Aptos uses Move, a safe, fast, and reliable language originally developed for Diem.
Project fundraised more than $200M. from a16z, Multicoin Capital, Katie Haun, 3 Arrows Capital, ParaFi Capital, IRONGREY, Hashed, Variant, Tiger Global, BlockTower, FTX Ventures, Paxos, Coinbase Ventures.
For more detailed info, follow Medium.
Follow projects' socials for updates.
Discord | Twitter | Web | Telegram
Server rental
Rent a server, for example, on Contabo. The following characteristics are suitable for Aptos: 4 CPU, 8 GB RAM & the Ubuntu 20.04 OS. an example of such a server is at the link. The cost of such a server is $7 per month.
After the purchase, you will receive an email with your server data: IP address and password.
Connection to server
To connect to the server on Windows, use PuTTy.
- Paste server IP to “Host Name” and click “Open”
- In the opened tab, write the command:
root
; - Press “Enter” and paste the password from the server, then “Enter”
On macOS, launch the Terminal.
- Enter the server with the command (change IP_ADDRESS to the server IP):
ssh root@IP_ADDRESS
- Next, enter “yes”, press “Enter,” and paste the server password (the icon with the key will hide the entered password). Press “Enter”.
Node installation
We took the installation from the Aptos RU chat by Nodes Guru.
After a successful connection to your server, enter the commands to install the node:
wget -q -O aptos.sh https://api.nodes.guru/aptos.sh && chmod +x aptos.sh && sudo /bin/bash aptos.sh
After that, you need to register your node to participate in the first testnet phase. We go to the site and register using Discord or GitHub, then verify the mail.
Let's start registering your node.
Чтобы вписать все ключи, выполняем команды на сервере.
To get needed info for registering your node use
source ~/.bash_profile
cat ~/.aptos/$APTOS_NODENAME.yaml
After registering your node, you'll see screen like this
This completes the installation
You can check the status of your node here
Commands to view logs or restart.
docker logs -f --tail 100 aptos-fullnode-1
docker logs -f --tail 100 aptos-validator-1
cd ~/.aptos && docker-compose restart