设置完整节点 (Setting up the full node)
加入网络 (Join the network)
export CHAIN_ID="namada-mainnet" ## (replace with the actual chain-id)
namada client utils join-network --chain-id $CHAIN_ID启动您的节点并同步 (Start your node and sync)
CMT_LOG_LEVEL=p2p:none,pex:error namada node ledger runNAMADA_LOG=info CMT_LOG_LEVEL=p2p:none,pex:error NAMADA_CMT_STDOUT=true namada node ledger runTIMESTAMP=$(date +%s)
NAMADA_LOG=info CMT_LOG_LEVEL=p2p:none,pex:error NAMADA_CMT_STDOUT=true namada node ledger run &> logs-${TIMESTAMP}.txt
tail -f -n 20 logs-${TIMESTAMP}.txt ## (in another shell)以 systemd 服务方式运行 namada (Running namada as a systemd service)
Last updated