title |
---|
Run a Sui Full Node |
Note: These instructions are for advanced users. If you just need a local development environment, you should instead follow the instructions in Create a Local Sui Network to create a local Full node, validators, and faucet.
Sui Full nodes validate blockchain activities, including transactions, checkpoints, and epoch changes. Each Full node stores and services the queries for the blockchain state and history.
This role enables validators to focus on servicing and processing transactions. When a validator commits a new set of transactions (or a block of transactions), the validator pushes that block to all connected Full nodes that then service the queries from clients.
Sui Full nodes:
- Track and verify the state of the blockchain, independently and locally.
- Serve read requests from clients.
Sui Full nodes sync with validators to receive new transactions on the network.
A transaction requires a few round trips to 2f+1 validators to form a transaction certificate (TxCert).
This synchronization process includes:
- Following 2f+1 validators and listening for newly committed transactions.
- Making sure that 2f+1 validators recognize the transaction and that it reaches finality.
- Executing the transaction locally and updating the local DB.
This synchronization process requires listening to at a minimum 2f+1 validators to ensure that a Full node has properly processed all new transactions. Sui will improve the synchronization process with the introduction of checkpoints and the ability to synchronize with other Full nodes.
A Sui Full node is essentially a read-only view of the network state. Unlike validator nodes, Full nodes cannot sign transactions, although they can validate the integrity of the chain by re-executing transactions that a quorum of validators previously committed.
Today, a Sui Full node maintains the full history of the chain.
Validator nodes store only the latest transactions on the frontier of the object graph (for example, transactions with >0 unspent output objects).
Follow the instructions here to run your own Sui Full.
Suggested minimum hardware to run a Sui Full node:
- CPUs: 10 core
- RAM: 32 GB
- Storage (SSD): 2 TB
Sui recommends running Sui Full nodes on Linux. Sui supports the Ubuntu and Debian distributions. You can also run a Sui Full node on macOS.
Make sure to update Rust.
Use the following command to install additional Linux dependencies.
sudo apt-get update \
&& sudo apt-get install -y --no-install-recommends \
tzdata \
libprotobuf-dev \
ca-certificates \
build-essential \
libssl-dev \
libclang-dev \
pkg-config \
openssl \
protobuf-compiler \
git \
clang \
cmake
You can configure a Sui Full node either using Docker or by building from source.
Follow the instructions in the Full node Docker Readme to run a Sui Full node using Docker, including resetting the environment.
You must get the latest source files from the Sui GitHub repository.
- Set up your fork of the Sui repository:
- Go to the Sui repository on GitHub and click the Fork button in the top right-hand corner of the screen.
- Clone your personal fork of the Sui repository to your local machine
(ensure that you insert your GitHub username into the URL):
git clone https://github.com/<YOUR-GITHUB-USERNAME>/sui.git
cd
into yoursui
repository:cd sui
- Set up the Sui repository as a git remote:
git remote add upstream https://github.com/MystenLabs/sui
- Sync your fork:
git fetch upstream
- Check out the branch associated with the network version you want to run (for example,
devnet
to run a Devnet Full node):git checkout --track upstream/<BRANCH-NAME>
Open a Terminal or Console to the sui
directory you downloaded in the previous steps to complete the following:
- Install the required Prerequisites.
- Make a copy of the Full node YAML template:
cp crates/sui-config/data/fullnode-template.yaml fullnode.yaml
- Download the genesis blob for the network to use:
- Devnet genesis blob:
curl -fLJO https://github.com/MystenLabs/sui-genesis/raw/main/devnet/genesis.blob
- Testnet genesis blob - Supported only when there is an active public Testnet network.
curl -fLJO https://github.com/MystenLabs/sui-genesis/raw/main/testnet/genesis.blob
- Devnet genesis blob:
- Optional: Skip this step to accept the default paths to resources. Edit the
fullnode.yaml
file to use custom paths.
- Update the
db-path
field with the path to the Full node database.db-path: "/db-files/sui-fullnode"
- Update the
genesis-file-location
with the path togenesis.blob
.genesis: genesis-file-location: "/sui-fullnode/genesis.blob"
At this point, your Sui Full node is ready to connect to the Sui network.
- Open a Terminal or Console to the
sui
directory. - Start the Sui Full node:
cargo run --release --bin sui-node -- --config-path fullnode.yaml
- Optional: Publish/subscribe to notifications using JSON-RPC via websocket.
If your setup is successful, your Sui Full node is now connected to the appropriate network.
Your Full node serves the read endpoints of the Sui JSON-RPC API at: http://127.0.0.1:9000
.
If you receive a cannot find -lpq
error, you are missing the libpq
library. Use sudo apt-get install libpq-dev
to install on Linux, or brew install libpq
on MacOS. After you install on MacOS, create a Homebrew link using brew link --force libpq
. For further context, reference the issue on Stack Overflow.
If you receive the following error:
panicked at 'error binding to 0.0.0.0:9184: error creating server listener: Address already in use (os error 98)
Then update the metrics address in your fullnode.yaml file to use port 9180
.
metrics-address: "0.0.0.0:9180"
Sui Explorer supports connections to custom RPC URLS and local networks. You can point the Explorer to your local Full node and see the transactions it syncs from the network. To make this change:
- Open a browser and go to: https://explorer.sui.io/
- Click the Devnet button in the top right-hand corner of Sui Explorer (or menu icon on smaller screens) and select Local or Testnet from the drop-down menu.
- Close the Choose a Network menu to see the latest transactions. If you chose the Local network, Sui Explorer now uses your local Full node to explore the state of the chain.
Monitor your Full node using the instructions at Logging, Tracing, Metrics, and Observability.
Note the default metrics port is 9184
. To change the port, edit your fullnode.yaml
file.
Whenever Sui releases a new version, the network resets and restarts as a new network with no data. You must update your Full node with each Sui release to ensure compatibility with the network.
Follow the instructions to reset the environment, namely by running the command:
docker-compose down --volumes
If you followed the instructions for Building from Source, update your Full node as follows:
- Shut down your running Full node.
cd
into your local Sui repository:cd sui
- Remove the old on-disk database and 'genesis.blob' file:
rm -r suidb genesis.blob
- Fetch the source from the latest release:
git fetch upstream
- Reset your branch:
git checkout -B <BRANCH-NAME> --track upstream/<BRANCH-NAME>
- Download the latest genesis blob:
- Devnet genesis blob:
curl -fLJO https://github.com/MystenLabs/sui-genesis/raw/main/devnet/genesis.blob
- Testnet genesis blob - supported only when there is an active public Testnet network
curl -fLJO https://github.com/MystenLabs/sui-genesis/raw/main/testnet/genesis.blob
- Devnet genesis blob:
- Update your
fullnode.yaml
configuration file if needed. - Restart your Sui Full node:
cargo run --release --bin sui-node -- --config-path fullnode.yaml
Your Full node starts on: http://127.0.0.1:9000
.