π Pipe Network
Pipe Network | The decentralized CDN redefining data delivery
Last updated
/opt/dcdn/pipe-tool login --node-registry-url="https://rpc.pipedev.network"/opt/dcdn/pipe-tool generate-registration-token --node-registry-url="https://rpc.pipedev.network"sudo cat > /etc/systemd/system/dcdnd.service << 'EOF'
[Unit]
Description=DCDN Node Service
After=network.target
Wants=network-online.target
[Service]
ExecStart=/opt/dcdn/dcdnd \
--grpc-server-url=0.0.0.0:8002 \
--http-server-url=0.0.0.0:8003 \
--node-registry-url="https://rpc.pipedev.network" \
--cache-max-capacity-mb=1024 \
--credentials-dir=/root/.permissionless \
--allow-origin=*
Restart=always
RestartSec=5
LimitNOFILE=65536
LimitNPROC=4096
WorkingDirectory=/opt/dcdn
[Install]
WantedBy=multi-user.target
EOFsudo ufw allow 8002/tcp
sudo ufw allow 8003/tcp
sudo ufw reloadsudo systemctl daemon-reload
sudo systemctl enable dcdnd
sudo systemctl start dcdnd/opt/dcdn/pipe-tool generate-wallet --node-registry-url="https://rpc.pipedev.network"/opt/dcdn/pipe-tool link-wallet --node-registry-url="https://rpc.pipedev.network" --public-key="<PUBLIC_KEY>"sudo journalctl -f -u dcdnd.servicesudo systemctl restart dcdndsudo systemctl status dcdnd