Running a Storage Node
Server Requirement
The recommended requirement of a storage server:
Resource | Specification |
---|---|
Recommended OS | Linux 64-bit Intel / AMD |
# of CPU Cores | ≥ 4 |
Memory | ≥ 8 GB |
Bandwidth | ≥ 20 Mbps |
Public Network IP | required |
Linux Kernel Version | 5.11 or higher |
Server Preparation
Install Docker
Please refer to the official documentation for Docker installation.
Firewall Configuration
The following commands are executed with root privileges. If error messages of permission denied
appear, switch to root privilege or add sudo
at the beginning of these commands.
By default, the node client program, cess-miner, uses port 4001 to listen for incoming connections, if your OS firewalled the port by default, you may need to enable the access to the port.
Optional: Mount Additional Drive
This step is required only if you are mounting another disk / storage device to your server.
Check the hard disk status using the df -h
command:
If the disk is not mounted, the hard drive for storage mining cannot be used. Use the commands below to view unmounted hard disks:
From the above, we can see that the unmounted disk is /dev/vdb
. We will be using /dev/vdb
to demonstrate the mounting operation.
Allocate the /dev/vdb
disk:
Format the newly divided disk into ext4 format:
Enter "y" to continue if the system asks to proceed:
Create /cess
directory to mount the disk. Using /cess
as an example:
Replace /dev/vdb
with your own disk name. /cess has to remain the same as created in the previous step. If you are not under root privileges, try:
Mount /cess
:
Check the disk mounting status:
If /cess
appears, the disk has been successfully mounted.
Prepare CESS Accounts
Storage node need to create at least two wallet accounts.
Earning Account: Used to receive mining rewards.
Staking Account: Used to pay for staking TCESS.
Signature Account: Used to sign blockchain transactions. If no staking account is specified, this account will also be used to pay staking TCESS.
Storage Deposit: To keep the storage node in honoring its service commitment, the storage node account will have its native tokens locked for the storage amount pledged to offer. Currently in testnet, it is 4,000 TCESS per TB. The pledged space is round up to the closest TB unit and locked for that amount multiply with 4,000 TCESS. The minimum locked token is also 4,000 TCESS.
Note:Each signature account can only be used by one storage node, otherwise an exception will occur.
Please refer to Creating CESS Accounts for creating a CESS account, goto CESS faucet to get our testnet tokens, TCESS, or contact us to get assistance.
Install CESS Client
Check for the latest version at: https://github.com/CESSProject/cess-nodeadm/tags
Download and install
If a message
Install cess nodeadm success
shows up at the end, it means the installation is completed.If the installation fails, please check the troubleshoot procedures.
Stop and removing existing services
Stop existing services:
Remove existing services:
Configure CESS Client
Setup a Running Network
Setup Configuration
If a staker payment account is provided, for testnet, the pledged space (answer to the Enter cess storage space) is round up to the closest TB unit and that amount multiply with 4,000 amount of TCESS will be locked as a miner deposit.
If a staker payment account is not provided, then the signature account will be used as the staking account. If the staking account different from signature account is provided, can only increase stake in block browser manually.
Default TEE worker endpoints for the chain will be used if you don't provide any TEE worker endpoints. This doesn't affect your reward as a storage miner.
Start CESS storage node
If you want to speed up your earnings, you can choose to deploy a Marker-type TEE Worker to help storage nodes certify space and mark user service files. Please refer to the TEE Worker User Guide.
Common Operations
Check CESS Chain Sync Status
As shown below, if we see that the height of the block corresponding to "best" is about the latest height in CESS Explorer, it means the local chain node synchronization is completed.
Only when the chain synchronization is completed can you operate other functions such as increase the staking, view the status of the node, etc.
Check Your Storage Node Status On-chain
You can check your storage node status on-chain.
On selected state query: select sminer pallet and allMiner() storage item
Click the button on the right to query the state
At the bottom of the returned list, you should find the storage node address that your mnemonic (with root path) generated from your answer to
sudo cess config set
. See below for an example.You can also check your detail miner info with selecting sminer pallet and minerItems(AccountId32) storage item. In the Option<AccountId32>, choose/input the storage node address. It will return your detail information on-chain. See below for an example.
Go to the Accounts page and check your account details, you would see a certain amount of TCESS has been reserved as the storage deposit.
View the Storage Node Log
As shown below, seeing /kldr-testnet
indicates that the network environment is a test network, and seeing Connected to the bootstrap node...
indicates that there is a connection to the bootstrap node.
View Storage Node Status
An example of the returned result is shown below:
Refer to the Glossary on the names above.
At the beginning of the storage node synchronization, all your validated space, used space, and locked space are 0. It is only when the validated space been incremented above 0 that the storage miner start earning rewards. For testnet, it take about an hour after the storage node chain synchronization completed, as shown below.
If you get the result of You are not a storage node
, please wait for the chain synchronization to complete.
Increase Storage Node Staking
Make sure that the signatureAcc is the same as stakingAcc can use this command
Withdraw Storage Node Staking
After your node has exited CESS Network (see below), run
Query Reward Information
Claim Reward
Update All Service Images
Stop and Remove All Services
Update Earnings Account
Exit CESS Network
Upgrade CESS Client
Stop and Remove All Services
Remove All Chain Data
Do not perform this operation unless the CESS network has been redeployed and it is confirmed that the data can be cleared.
Update cess-nodeadm
cess-nodeadm
Update All Service Images
Last updated