GameCP Logo
UdforskKom i Gang
GameCP Logo
GameCP

Den næste generation platform til spilserverstyring. Bygget til ydeevne, sikkerhed og brugervenlighed.

Produkt

  • Funktioner
  • Integrationer
  • App Store
  • Priser
  • Tilpasset Udvikling
  • Sammenlign Paneler

Ressourcer

  • Dokumentation
  • API Reference
  • Henvisningsprogram
  • Support
  • Systemstatus

Firma

  • Om
  • Kontakt

© 2026 GameCP. Alle rettigheder forbeholdes.

PrivatlivspolitikServicevilkår
ARK: Survival Ascended gameplay

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!

Skip the Setup — Deploy Nowor read the full guide below
RequirementsSetup GuideInstallation

Hardware Requirements

Here's what you need to run a ARK: Survival Ascended dedicated server.

Economy

Small private server, 1-10 players

CPU3.5 cores
RAM12 GB
Storage35 GB SSD

Standard

Community server, 10-30 players

CPU4 cores
RAM18 GB
Storage35 GB SSD

Pro

Large public server, 30-70 players

CPU5 cores
RAM24 GB
Storage35 GB SSD

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.

Get Started FreeNo credit card required

Setup in 4 Steps

Skip the manual SteamCMD installation, port forwarding, and systemd configuration. Install on your own computer and start hosting instantly.

Step 01

Create a GameCP Account

Sign up for free at gamecp.com. No credit card required. Your dashboard is ready in seconds.

GameCP gives you a full control panel with Docker containerization, file management, automatic port forwarding, and automatic updates — all built in.

Step 02

Connect Your Hardware

Install GameCP on your own desktop, laptop, VPS, or dedicated machine. One-line install — no SSH expertise needed.

GameCP installs Docker, configures networking, and sets up automatic port forwarding so your friends can connect instantly. Start hosting from your own PC and scale to a VPS later. Supports Windows, macOS, and Linux.

Step 03

Deploy ARK: Survival Ascended

Select "ARK: Survival Ascended" from the template library and hit deploy. GameCP handles SteamCMD (App ID: 2430930), ports, startup commands, and all configuration automatically.

Includes pre-configured GameUserSettings.ini, Game.ini. Uses the steamcmd:proton image. ~35 GB storage.

Step 04

Start Playing

Hit start and share your server address. Automatic port forwarding handles the rest — no router config needed.

GameCP provides live SOURCE console access from your browser. Your friends connect using the address GameCP gives you.

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.

Step 1

Configure & Prepare

Set your server settings, then install Docker, SteamCMD, and pull the ARK: Survival Ascended container image.

Server ConfigurationEdit values to update all commands
terminal
# 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:proton
Step 2

Install Server Files via SteamCMD

Download the ARK: Survival Ascended dedicated server using Steam App ID 2430930.

terminal
# 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 \
  +quit
Step 3

Open Firewall Ports

ARK: Survival Ascended requires 3 ports to be open for game traffic and queries.

terminal
sudo ufw allow 27015/udp
sudo ufw allow 7777/both
sudo ufw allow 27020/tcp
27015/UDP(PORT)7777/BOTH(GAME_PORT)27020/TCP(RCON_PORT)
Step 4

Launch the Server

Start the ARK: Survival Ascended server using the configuration from Step 1.

Create the startup script

terminal
# 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=?QueryPort=27015?RCONPort=27020?RCONEnabled=True?ServerPassword=""?ServerAdminPassword="" \
-port= \
-queryport=27015 \
-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.sh

Run the container

terminal
docker run -d \
  --name ark-survival-ascended-server \
  -p 27015:27015/udp \
  -p 7777:7777/both \
  -p 27020:27020/tcp \
  -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.sh

Or 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 GameCP

More Hosting Guides

Explore step-by-step setup guides for other popular games supported by GameCP.

7 Days to Die

7 Days to Die

Survival

ARK: Survival Evolved

ARK: Survival Evolved

Survival

Aska

Aska

Survival

Conan Exiles

Conan Exiles

Survival

DayZ

DayZ

Survival

Don't Starve Together

Don't Starve Together

Survival

Enshrouded

Enshrouded

Survival

HumanitZ

HumanitZ

Survival

View all supported games

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.

Deploy NowView Pricing

No credit card required · Free tier available · Install local, scale later

Host ARK: Survival Ascended from your own computer. Automatic port forwarding. Zero config.

No credit card requiredDeploy Free