Setting up a t4l3nt node
Step-by-step instructions for setting up a t4l3nt node
Install Docker
Run docker full node
Full nodes will take several days to sync. See snapshots page to import a snapshot and drastically speed up the syncing process.
Run docker for a rolling node (only syncs recent cycles)
docker run -d -p 8733:8733 -p 9733:9733 -v tlnt-data:/home/tlnt t4l3nt/t4l3nt:v12-tlnt-rolling
Rolling node will sync quickly and takes far less disk space.
For running a full node we run the container in background using -d flag. Another option would be to run the container in interactive mode using the -it flag. You could then also detach your screen using tmux
/screen
.
The name of the container is set to t4l3nt-node
but this can be changed or removed.
If you experience errors with the provided Docker image you try to follow the instructions in Build the Docker Image locally
Start a bash session inside the container
Inside the container, create a key pair for your node producer wallet
Remember to never share your secret keys or sensitive information with anyone.
MAKE SURE YOU BACK UP YOUR KEY
you can view your private key with
cat ~/.tlnt-client/secret_keys
(from inside the node bash session)
Copy your keys and save them somewhere securely. Write it down or save it in an encrypted disk with AES256 or better with a long complex password. Don't forget it. Back it up.
Get your public address and deposit FILMCredits
Fully sync your node with the network
Once the node is bootstrapped you can register your node as a producer
Restart your node once it is bootstrapped and you've added yourself as a delegate.
You need at least 1 FILMReel (1000 FILMCredits) in order to stake in T4L3NT.
Check peers list
tlnt-admin-client p2p stat
Check logs
cat /var/log/supervisor/tlnt-node.log
cat /var/log/supervisor/endorser.log
cat /var/log/supervisor/accuser.log
Make sure all are bootstrapped.
Last updated