Saturn L1 nodes are CDN edge caches in the outermost layer of the Filecoin Saturn network. L1 nodes serve CAR files to retrieval clients as requested by their CIDs. Cache misses are currently served by the IPFS Gateway. In the future, cache misses will be served by Saturn L2 nodes and Filecoin Storage Providers.
Saturn is live. Do you have a server that meets the minimum hardware requirements? If so, follow the setup instructions below to get started. You can run an L1 node, contribute bandwidth to the network, and earn Filecoin (FIL) today.
Beyond running a node, Saturn is a community run project and we'd love for you to get involved. Come say hi in #filecoin-saturn on Filecoin Slack! 👋
- Requirements
- Set up a node
- Set up a node with Ansible
- Stopping a node
- Switch networks between test net and main net
- Node operator guide
- License
- Filecoin wallet address
- Email address
- Linux server with a static public IPv4 address
- Root access / passwordless sudo user (How to)
- Ports 80 and 443 free and public to the internet
- Docker installed (Instructions here) with Docker Compose v2
- CPU with 6 cores (12+ cores recommended). CPU Mark of 8,000+ (20,000+ recommended)
- 10Gbps upload link minimum1 (Why 10Gbps?)
- 32GB RAM minimum (128GB+ recommended)
- 2TB SSD storage minimum (16TB+ NVMe recommended)2
Only one node per physical host is allowed. If you want to run multiple nodes, you need to run them on dedicated hardware.
Multi-noding (Sharing CPU, RAM, Uplink or storage among nodes) is not allowed.
2 Bigger disk → bigger cache → greater FIL earnings
If you want to switch your node from test net to main net, or vice versa, see Switch networks below.
-
Install
- Docker: instructions here
- Docker compose v2: instructions here
-
Change directory to
$SATURN_HOME
(default:$HOME
) to download the required filescd ${SATURN_HOME:-$HOME}
-
Download the
.env
fileNote: the
.env
file does not take precedence over env variables set locally.- Set the mandatory
FIL_WALLET_ADDRESS
andNODE_OPERATOR_EMAIL
environment variables in the.env
file. - Set
SATURN_NETWORK
environment variable in theenv
file.- To join Saturn's Main network and earn FIL rewards, make sure to set
SATURN_NETWORK
tomain
. - To join Saturn's Test network, which doesn't earn FIL rewards, set
SATURN_NETWORK
totest
. Note that this is the default value!
- To join Saturn's Main network and earn FIL rewards, make sure to set
- By default, Saturn volume is mounted from
$HOME
. It can be changed by setting$SATURN_HOME
environment variable.
curl -s https://raw.githubusercontent.com/filecoin-saturn/L1-node/main/.env -o .env
You can use the text editor of your choice (e.g.
nano
orvim
on Linux) - Set the mandatory
-
Download the docker-compose file
curl -s https://raw.githubusercontent.com/filecoin-saturn/L1-node/main/docker-compose.yml -o docker-compose.yml
-
Launch it:
sudo docker compose up -d
-
Check logs with
docker logs -f saturn-node
-
Check there are no errors, registration will happen automatically and node will restart once it receives its TLS certificate
In most instances speedtest does a good job of picking "close" servers but for small networks it may be incorrect.
If the speedtest value reported by speedtest seems low, you may want to configure SPEEDTEST_SERVER_CONFIG to point to a different public speedtest server. You will need to install speedtest CLI in the host and fetch close servers' IDs by doing speedtest --servers
, then setting SPEEDTEST_SERVER_CONFIG="--server-id=XXXXX"
We are using a Watchtower container to update the saturn-node container.
Your node will be updated automatically. You can see the update logs with docker logs -f saturn-watchtower
.
Set up a node with Ansible
From here:
"Ansible is an IT automation tool. It can configure systems, deploy software, and orchestrate more advanced IT tasks such as continuous deployments or zero downtime rolling updates."
This playbook is meant as a bare-bones approach to set up an L1. It simply automates running the steps described above. A consequence of this is that when run it will restart a crashed L1 node docker container. It also presents a basic approach to server hardening which is by no means thorough.
Note: The security of your servers is your responsibility. You should do your own research to ensure your server follows security best practices.
If you're looking for a playbook which covers server hardening, monitoring and logging please check out https://github.com/hyphacoop/ansible-saturn-l1.
Currently, this playbook runs on the following Linux distros:
- Ubuntu
- Debian
- CentOS
These instructions are to be run in a machine with Ansible >= 2.14 installed. This machine is known as your control node and it should not be the one to run your L1 node.
Most commands are run as root and your ssh user should have root access on the target machine.
- Install the required Ansible modules
ansible-galaxy collection install community.docker
-
Clone this repository and
cd
into it. -
For target host connectivity, ssh keys are recommended and this playbook can help you with that.
Note: Using the playbook for this is completely optional.
- Make sure you have configured
ansible_user
andansible_ssh_pass
for your target host in your inventory file. See more here. - Setup an
authorized_keys
file with your public ssh keys in the cloned repository root. - Run
ansible-playbook -i <path_to_your_inventory> -l <host_label> --skip-tags=config,harden,run playbooks/l1.yaml
- Make sure you have configured
-
Ensure your control node has ssh access to your target machine(s).
- Make sure to specify which hosts you want to provision in your inventory file.
ansible -vvv -i <path_to_your_inventory> <host_label> -m ping
- Replace the environment varariable values where appropriate and export them.
- If Main network: Set
SATURN_NETWORK
tomain
- If you are switching networks check Switching networks and rerun step 4 and 5.
- You can define a host-specific
SATURN_HOME
by setting asaturn_root
variable for that host on your inventory file. See more here.
export FIL_WALLET_ADDRESS=<your_fil_wallet_address>; export NODE_OPERATOR_EMAIL=<your_email>; export SATURN_NETWORK=test
- Run the playbook
- Feel free to use host labels to filter them or to deploy incrementally.
- We're skipping the bootstrap play by default, as it deals with setting authorized ssh keys on the target machine. See 2 for more info.
ansible-playbook -i <path_to_your_inventory> -l <host_label> --skip-tags=bootstrap playbooks/l1.yaml
- To skip the hardening step run this instead:
ansible-playbook -i <path_to_your_inventory> -l <host_label> --skip-tags=bootstrap,harden playbooks/l1.yaml
To gracefully stop a node and not receive a penalty, run:
sudo docker stop --time 1800 saturn-node
or if you are in your $SATURN_HOME
folder with the Saturn docker-compose.yml
file:
sudo docker compose down
We are setting the stop_signal
and the stop_grace_period
in our Docker compose file to avoid issues.
If you have a custom setup, make sure to send a SIGTERM to your node and wait at least 30 minutes for it to drain.
If you want to switch your node from Saturn's test network (aka test
) to Saturn's main network (aka main
), or vice versa, follow these steps:
- Gracefully halt your node as explained in Stopping a node.
- Set the network environment variable
SATURN_NETWORK
tomain
, ortest
, in your$SATURN_HOME/.env
file (default:$HOME/.env
). - Delete contents in
$SATURN_HOME/shared/ssl
(default:$HOME/shared/ssl
). - Start the node again with
docker compose -f $SATURN_HOME/docker-compose.yml up -d
. - Check logs with
docker logs -f saturn-node
For answers to common questions about operating a node, like about receiving your filecoin payouts, see the L1 node FAQ page.
You need to own a Filecoin wallet to receive FIL payments.
-
If you have an account on a Centralized Exchange (Coinbase, Binance, etc.) that supports Filecoin, go through the steps to deposit Filecoin and you'll be given an wallet address. This is recommended if you don't want to manage your wallet's seed phrase.
-
Web wallets
- Filfox wallet
- Glif - Supports Ledger
-
Desktop wallets
-
Mobile wallets
When payments are scheduled to be sent out, your Filecoin wallet will receive a FIL payment.
- https://dashboard.strn.network - View historical data on your bandwidth contributions, FIL earnings, and more.
- https://orchestrator.strn.pl/stats - View detailed, real-time stats on every Saturn node.
Dual-licensed under MIT + Apache 2.0