Step-by-Step Instructions to Install Silo Node Using Docker
Step 1: Understand Prerequisites
Before setting up a Silo node, ensure the following:
Hardware Requirements:
Minimum 500 GB of free storage.
Minimum 2 TB of bandwidth per month.
Stable and consistent internet connection.
Operating System:
Linux or Windows (Docker support is required).
Docker:
Ensure Docker is installed. Follow the Docker installation guide if needed.
Public IP Address:
A public IP or properly configured Dynamic DNS.
Wallet Address:
A Larissa Network wallet address for Silo payouts.
Step 2: Get an Authorization Token
Open Silo registration page on the Silo website.
Enter your email to generate an authorization token.
Save this token securely, as it will be used to authenticate your node.
Step 3: Setup Port Forwarding
Access your router’s configuration page:
Typically accessed via
http://192.168.1.1
(or your router's IP address).
Forward the following ports:
TCP Port 28967: Default Silo node communication port.
UDP Port 28967 (if QUIC is enabled, see Step 4).
Ensure the forwarded ports point to the local IP address of the machine hosting the Silo node.
Step 4: Configure QUIC
QUIC improves performance and is recommended for Silo nodes.
Forward UDP Port 28967 (as per Step 3).
Confirm with your ISP that UDP traffic is not blocked.
No additional configuration is required on the node for QUIC if the port is open.
Step 5: Create an Trustkey
Download the Trustkey Tool:
PowerShell:
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; curl https://github.com/silos3/silo-release/releases/download/v1.0.0-P/trustkey_windows_amd64.exe.zip -o trustkey_windows_amd64.exe.zip; Expand-Archive ./trustkey_windows_amd64.exe.zip . -Force; Rename-Item -Path ./trustkey_windows_amd64.exe -NewName trustkey.exe
Generate an Trustkey:
./trustkey.exe create silonode
Authorize the Trustkey:
./trustkey.exe authorize silonode <email:your-authorization-token>
Store Securely:
Ensure the trustkey files are saved in a secure and accessible location.
Step 6: Install Silo Node Software - Docker
Pull the Silo Docker Image:
Use the following command to download the official Silo node Docker image:
docker pull silos3/silo-node:latest
Paste the command into a plain text editor, such as Notepad++ (highly recommended), avoiding any word processing software.
docker run --rm -e SETUP="true" --mount type=bind,source="<trustkey-dir>",destination=/app/trustkey --mount type=bind,source="<storage-dir>",destination=/app/config --name storagenode silos3/silo-node:latest
Substitute <trustkey-dir>
and <storage-dir>
with your specific parameters, execute the revised command in a terminal, and confirm that your node is now successfully configured.
Run the Docker Container:
Paste the command into a text editor, such as Notepad++ (highly recommended), avoiding the use of any word processing software.
docker run -d --restart unless-stopped --stop-timeout 300 -p 28967:28967/tcp -p 28967:28967/udp -p 127.0.0.1:14002:14002 -e WALLET="0xXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" -e EMAIL="username@domain.com" -e ADDRESS="domain.ddns.net:28967" -e STORAGE="2TB" --mount type=bind,source="<trustkey-dir>",destination=/app/trustkey --mount type=bind,source="<storage-dir>",destination=/app/config --name storagenode silos3/silo-node:latest
Modify the values for WALLET, EMAIL, ADDRESS, and STORAGE, replacing <trustkey-dir>
and <storage-dir>
with your specific parameters.
Execute the updated command in your terminal.
Congratulations, you are now operating as a Storage Node!
Check Node Status: Verify the Silo node is running by listing Docker containers:
docker ps -a
Monitor : Your node stats
http://127.0.0.1:14002
Last updated
Was this helpful?