Egg Repository

Pterodactyl Community Egg Repository

Clusterio

Clusterio is a clustered Factorio server manager that provides the tooling for implementing cross server interactions in Factorio. It was previously best known for implementing cross server transfer and cloud storage of items via teleporter chests. But this functionality has been pulled out of Clusterio into its own plugin for Clusterio named Subspace Storage. By itself Clusterio doesn't change the gameplay in any way, you could even use Clusterio to manage completely vanilla Factorio servers. Plugins do the work of modding in the visible changes into the game, see the Plugins section for ready-made plugins you can install into a Clusterio cluster.

Read Me

Clusterio

Introduction

Clusterio (https://github.com/clusterio/clusterio) is a clustered Factorio server manager that provides the tooling for implementing cross server interactions in Factorio. It was previously best known for implementing cross server transfer and cloud storage of items via teleporter chests. But this functionality has been pulled out of Clusterio into its own plugin for Clusterio named Subspace Storage.

By itself Clusterio doesn't change the gameplay in any way, you could even use Clusterio to manage completely vanilla Factorio servers. Plugins do the work of modding in the visible changes into the game, see the Plugins section for ready-made plugins you can install into a Clusterio cluster.

Features

  • Clustered Factorio server management allowing you manage the running of Factorio servers across a fleet of physical servers from both a web interface and a command line interface.

  • User list management for synchronizing in-game admins, whitelisted users, and bans to all the servers in the cluster.

  • Integrated support for exporting statistics for the whole cluster to Prometheus via a single metrics endpoint.

  • Extensive plugin support for adding your own cross server features to Factorio using Clusterio's communication backbone.

Setup

Clusterio uses a Controller/Host system setup, with the Controller server running the Web UI and controlling which Hosts run which Instances.

The Controller server runs a web server that needs to be reachable for cluster management by the user, and by the other nodes to manage them.

The Host server runs the factorio server, and will need any mods manually importing at this time, including the Factorio mods for the Clustorio Library(https://mods.factorio.com/mod/clusterio_lib) and Subspace Storage(https://mods.factorio.com/mod/subspace_storage).

Both only require a single port each.

Server Mode controls if the server is a Controller or Host, and each varaible is labeled as required for Controller, Host or All. Please ensure you fill in all required variables.

Set up the Controller server first, and from there you can generate the Controller URL and Controller Token required for the Host servers to connect.

Additional configuration options can be found in config-Controller.json and config-Host.json as relevant.

Changes to the Cluster will only be written out to the database on a graceful stop.

Server Ports

Clusterio requires a single port

Port default
Controller HTTP 8081
Host Game 34197
Yolks
NameTag
NodeJS 21ghcr.io/ptero-eggs/yolks:nodejs_21
NodeJS 20ghcr.io/ptero-eggs/yolks:nodejs_20
NodeJS 19ghcr.io/ptero-eggs/yolks:nodejs_19
NodeJS 18ghcr.io/ptero-eggs/yolks:nodejs_18
Variables
NameDescriptionEnvironment VariableDefault ValueUser ViewableUser Editable
Server ModeSet's the cluster operation mode of the server, can be either "controller" or "host". This is better thought of as Management or Gameserver nodes. Required on: AllSERVER_MODEcontrollerYesYes
Log LevelOptions: "none", "fatal", "error", "warn", "audit", "info", "verbose" Required on: AllLOG_LEVELinfoYesYes
Server AdminSuperadmin account name Required on: ControllerADMIN_STRINGYesYes
Host NameHost name in the Controller Web UI Required on: HostHOST_NAMEYour Sub-ServerYesYes
Controller URLConnection URL to the Controller server, can be an internal address if you have allocated an additional internal port to the Controller Server. Example: http://yourip:yourport Required on: HostCONTROLLER_URLYesYes
Controller TokenAuthentication token used to connect to the Controller server, generated through the Controller Web UI. Required on: HostCONTROLLER_TOKENYesYes
PluginsClusterio Plugins to install, space separate list. Example: @clusterio/plugin-subspace_storage @clusterio/plugin-global_chat @clusterio/plugin-research_sync @clusterio/plugin-inventory_sync Required on: AllPLUGINSYesYes
Cluster NameThe Name of your Controller server cluster. Required: ControllerCLUSTER_NAMEYour ClusterYesYes
Install Script
#!/bin/bash
# Clusterio Installation Script
#
# Server Files: /mnt/server
apt update
apt install -y git curl jq file unzip make gcc g++ python3 python3-dev libtool

mkdir -p /mnt/server
cd /mnt/server

if [ "${USER_UPLOAD}" == "true" ] || [ "${USER_UPLOAD}" == "1" ]; then
    echo -e "assuming user knows what they are doing have a good day."
    exit 0
fi

case "${SERVER_MODE}" in

  "controller")
    echo -e "Initialising Clustorio In Controller mode"
        npm init "@clusterio" -y -- --allow-install-as-root --mode "${SERVER_MODE}" --download-headless --log-level "${LOG_LEVEL}" --admin "${ADMIN_STRING}" --public-address "${SERVER_IP}":"${SERVER_PORT}" --plugins ${PLUGINS}
	;;

  "host")
    echo -e "Initialising Clustorio In Host mode"
	npm init "@clusterio" -y -- --allow-install-as-root --mode "${SERVER_MODE}" --download-headless --log-level "${LOG_LEVEL}" --host-name "${HOST_NAME}" --public-address "${SERVER_IP}" --controller-url "${CONTROLLER_URL}" --controller-token "${CONTROLLER_TOKEN}" --plugins ${PLUGINS}
    ;;
    
esac

echo -e "install complete"
exit 0