sui-guide

Sui Node Setup

Sui Node Requirements

🔲 OS Ubuntu 18.04 or 20.04 🔲 10 CPUs 🔲 32GB RAM 🔲 1000GB Storage 🔲 Port 9000, 9184 🔲 Need Super user or root for run this script.

Official Site:

  • Official web site : https://sui.io/

  • Run a Sui Fullnode : https://github.com/MystenLabs/sui/blob/main/doc/src/build/fullnode.md

  • Node health monitor : https://node.sui.zvalid.com/

Set up Sui full node with auto script.

Clone and Install Scripts

TESTNET

wget -q -O sui_testnet.sh https://raw.githubusercontent.com/Contribution-DAO/sui-node-setup/main/sui_testnet.sh && chmod +x sui_testnet.sh && sudo /bin/bash sui_testnet.sh

DEVNET

wget -q -O sui_devnet.sh https://raw.githubusercontent.com/Contribution-DAO/sui-node-setup/main/sui_devnet.sh && chmod +x sui_devnet.sh && sudo /bin/bash sui_devnet.sh

Verify your node running

Send a request, the result should be something like this: image

Check Node Status

Check the latest TX on your node

Check the latest TX on testnet chain

Check the latest TX on devnet chain

Monitor your node health status

  1. Insert your node ip

Send a request, the result should be something like this: image

Optional Command

Check sui node status

Check sui node logs

Stop sui node

Start sui node

Retart sui node

Delete sui node

Update Sui full node with auto script.

Clone and Install Scripts

TESTNET

DEVNET

Last updated