
Host a ARK: Survival Ascended Dedicated Server
ARK is reimagined from the ground-up into the next-generation of video game technology with Unreal Engine 5! Form a tribe, tame & breed hundreds of unique dinosaurs and primeval creatures, explore, craft, build, and fight your way to the top of the food-chain. Your new world awaits!
Hardware Requirements
Here's what you need to run a ARK: Survival Ascended dedicated server.
Economy
Small private server, 1-10 players, no mods
Standard
Community server, 10-30 players with light mods
Pro
Large public server with heavy mods, 30-70 players
Start hosting from your own computer
Run a ARK: Survival Ascended server on your desktop, laptop, VPS, or dedicated machine — GameCP automates Docker setup, resource allocation, and ARK: Survival Ascended configuration instantly. Automatic port forwarding means your friends can connect without touching your router. Start local, scale to a VPS when you're ready.
Setup in 4 Steps
Skip the manual SteamCMD installation, port forwarding, and systemd configuration. Install on your own computer and start hosting instantly.
The Manual Way vs. GameCP
Manual Setup
- ✗Install SteamCMD manually
- ✗Configure 3+ firewall ports and router settings
- ✗Write systemd service files
- ✗SSH into server to edit configs
- ✗Requires a VPS or dedicated server
- ✗30-60 minutes if experienced
With GameCP
- One-click SteamCMD install
- Automatic port forwarding — no router config
- Host from your own PC, VPS, or dedicated server
- Docker container with auto-restart
- Visual config editor in browser
- Under 5 minutes total
Under the Hood
The full manual process to host a ARK: Survival Ascended dedicated server on a VPS. Or install GameCP on your own computer and skip all of this.
Configure & Prepare
Set your server settings, then install Docker, SteamCMD, and pull the ARK: Survival Ascended container image.
# Update system and install Docker
sudo apt update && sudo apt install -y docker.io
sudo systemctl enable --now docker
# Create game server directory
sudo mkdir -p /opt/gameserver
# Install SteamCMD
sudo mkdir -p /opt/steamcmd
curl -sqL "https://steamcdn-a.akamaihd.net/client/installer/steamcmd_linux.tar.gz" | sudo tar zxvf - -C /opt/steamcmd
# Server configuration
export SESSION_NAME="${SERVER_NAME}"
export SERVER_MAP="TheIsland_WP"
export SERVER_PVE="1"
export BATTLE_EYE="1"
export AUTO_UPDATE="1"
# Pull the container image
docker pull ghcr.io/ptero-eggs/steamcmd:protonInstall Server Files via SteamCMD
Download the ARK: Survival Ascended dedicated server using Steam App ID 2430930.
# Download ARK: Survival Ascended server files (App ID: 2430930)
/opt/steamcmd/steamcmd.sh \
+force_install_dir /opt/gameserver \
+login anonymous \
+app_update 2430930 -beta ${SRCDS_BETAID} validate \
+quitOpen Firewall Ports
ARK: Survival Ascended requires 3 ports to be open for game traffic and queries.
sudo ufw allow 7777/both sudo ufw allow 27020/tcp sudo ufw allow 27015/udp
Launch the Server
Start the ARK: Survival Ascended server using the configuration from Step 1.
Create the startup script
# Create the startup script
cat > /opt/gameserver/start.sh << 'EOF'
#!/bin/bash
# Setup Proton environment
export HOME=/home/container
export STEAM_COMPAT_CLIENT_INSTALL_PATH="/home/container"
export STEAM_COMPAT_DATA_PATH="/home/container/steamapps/compatdata/2430930"
mkdir -p ""
# Tell EOS our public IP (required for non-standard ports)
export EOS_OVERRIDE_HOST_IP=
# Graceful shutdown function
rmv() {
echo 'Saving world and shutting down...'
rcon -t rcon -a 127.0.0.1:27020 -p saveworld 2>/dev/null
rcon -t rcon -a 127.0.0.1:27020 -p DoExit 2>/dev/null
wait 2>/dev/null
echo 'Server closed.'
exit 0
}
trap rmv 15 2
# Build optional flags
OPTIONAL_FLAGS=''
[ -z "" ] || OPTIONAL_FLAGS=" -mods="
[ "1" == "1" ] || OPTIONAL_FLAGS=" -NoBattlEye"
[ "1" == "0" ] || OPTIONAL_FLAGS=" -ServerPVE"
# Seed log file for tail
mkdir -p ./ShooterGame/Saved/Logs
touch ./ShooterGame/Saved/Logs/ShooterGame.log
# Start the server (Proton handles Wine layer)
LD_PRELOAD="" proton run ./ShooterGame/Binaries/Win64/ArkAscendedServer.exe \
TheIsland_WP?listen?MaxPlayers=?SessionName=""?Port=7777?QueryPort=?RCONPort=27020?RCONEnabled=True?ServerPassword=""?ServerAdminPassword="" \
-port=7777 \
-queryport= \
-PublicIPForEpic= \
-PublicIP= \
-Multihome=0.0.0.0 \
-WinLiveMaxPlayers= \
-oldconsole \
-servergamelog \
&
ARK_PID=$!
# Tail the game log so GameCP console captures output
tail -c0 -F ./ShooterGame/Saved/Logs/ShooterGame.log --pid= &
# Wait for the server process
wait
EOF
chmod +x /opt/gameserver/start.shRun the container
docker run -d \
--name ark-survival-ascended-server \
-p 7777:7777/both \
-p 27020:27020/tcp \
-p 27015:27015/udp \
-e SESSION_NAME="${SERVER_NAME}" \
-e SERVER_MAP="TheIsland_WP" \
-e SERVER_PVE="1" \
-e BATTLE_EYE="1" \
-e AUTO_UPDATE="1" \
-v /opt/gameserver:/opt/gameserver \
-w /opt/gameserver \
ghcr.io/ptero-eggs/steamcmd:proton \
./start.shOr skip all of this
GameCP automates every step above: Docker, SteamCMD, port forwarding, startup, and config. Install on your own PC and deploy a ARK: Survival Ascended server in under 5 minutes.
Deploy with GameCPMore Hosting Guides
Explore step-by-step setup guides for other popular games supported by GameCP.
Ready to Host Your ARK: Survival Ascended Server?
Install GameCP on your own computer and start hosting in minutes. Automatic port forwarding, zero config — your friends connect instantly.
No credit card required · Free tier available · Install local, scale later