Docs / Game Servers / Craftopia Dedicated Server

Craftopia Dedicated Server

By Admin · Mar 15, 2026 · Updated Apr 23, 2026 · 645 views · 1 min read

Craftopia Server

Craftopia combines survival crafting, farming, and dungeon exploration. The dedicated server enables persistent multiplayer worlds with custom settings.

Installation

steamcmd +force_install_dir /opt/craftopia \
    +login anonymous \
    +app_update 1670340 validate \
    +quit

Configuration

# ServerSetting.ini
ServerPassword=
MaxPlayerNum=16
ServerName=My Craftopia Server
DifficultyLevel=Normal

Service Setup

cat > /etc/systemd/system/craftopia.service << EOF
[Unit]
Description=Craftopia Server
After=network.target
[Service]
WorkingDirectory=/opt/craftopia
ExecStart=/opt/craftopia/CraftopiaServer.x86_64
User=gameserver
Restart=on-failure
[Install]
WantedBy=multi-user.target
EOF
systemctl enable --now craftopia
ufw allow 22336/udp

Management

  • Back up save data in the worlds directory
  • Monitor player count and performance
  • Update regularly via SteamCMD

Was this article helpful?