VPS: ARK Survival Ascended Dedicated Server Setup | ZAP-Hosting Docs (2024)

This guide was created with the following products:

(Details may vary with products from different providers but the main concepts remain the same)

VPS

Introduction

Do you have a Windows VPS or root server and you want to install the ARK: Survival Ascended Dedicated server service on it? You are in the right place. In this guide, we will explain the step by step process of installing this service on your server.

ARK: Survival Ascended Dedicated Server Setup on Windows VPS

Feel like you understand better when you see things in action? We’ve got you! Dive into our video that breaks it all down for you. Whether you're in a rush or just prefer to soak up information in the most engaging way possible!

Preparation

To begin with, connect to your VPS or rootserver through Remote Desktop (RDP). Use our RDP Initial Access guide if you need help doing this.

Once you have accessed your server, you will need to setup SteamCMD in order to be able to download the necessary dedicated server files. SteamCMD is the command-line (CLI) version of the Steam client and is the tool which allows you to easily download a range of Steam workshop and dedicated server files. Download SteamCMD from the official Valve website or directly here.

Create a new folder somewhere on your server, in this scenario we will name it steamcmd. Head over to your Downloads folder, find the steamcmd.zip file which you just downloaded and place it into your steamcmd folder. Now you will have unzip the file by right-clicking and using Window's unzip functionality directly, or any range of applications such as .7zip or Winrar. This should result with a steamcmd.exe file being unzipped.

Simply run steamcmd.exe and await until the installation process is fully completed.

VPS: ARK Survival Ascended Dedicated Server Setup | ZAP-Hosting Docs (1)

As soon as the message Loading Steam API.... OK is displayed, the process has been completed successfully and you can being with the installation of the ARK: Survival Ascended dedicated server in the following section.

Installation

After the installation, you should be able to execute commands within the steamcmd.exe command prompt that you ran before. You need to login prior to being able to do anything, through the anonymous user, by using the command: login anonymous

Once logged in, you can now begin downloading the files.

tip

Optional: You can set your preferred install directory by using the command force_install_dir [path], replacing [path] with the path that you wish to use for your server. For example:

force_install_dir C:\ARK-Survival-Ascended-Server

Now run the command app_update 2430930 which will begin the download. The App ID 2430930 is the ARK: Survival Ascended Dedicated Server application.

VPS: ARK Survival Ascended Dedicated Server Setup | ZAP-Hosting Docs (2)

info

Please do not interrupt the process before it is completed to avoid mistakes. It may take a moment, but it's worth being patient! :)

Creating Startup File

Once the download has been completed successfully, navigate to the directory where you have performed the installation and go to the following subdirectory:

../steamapps/common/Ark Survival Ascended Dedicated Server/ShooterGame/Binaries/Win64

In this subdirectory, you will have to create your startup file which is needed in order to launch the dedicated server. Create a file with the name: start-ark.bat. You can create a text document first and then rename it to the .bat extension afterwards.

info

Ensure that you have the "Display file extensions" option enabled in your File Explorer so that the correct file extension is being used.

Open the file using a text editor (such as Notepad++) and add the following contents within it:

start ArkAscendedServer.exe TheIsland_WP?listen?SessionName=[server_name]?ServerAdminPassword=[admin_password]?Port=7777?QueryPort=27015?MaxPlayers=[max_players] -NoBattlEye
exit

Within this command, you should replace [server_name], [admin_password] and [max_players] with what you wish.

If you also want to setup a password for regular people to be able to join, you can add ?ServerPassword=[join_password] to the command in the file above. This would change it to:

start ArkAscendedServer.exe TheIsland_WP?listen?SessionName=[server_name]?ServerPassword=[join_password]?ServerAdminPassword=[admin_password]?Port=7777?QueryPort=27015?MaxPlayers=[max_players] -NoBattlEye
exit

Ensure that you have set the variables and that you save the changes before you close the file.

Your server will now be accessible locally through 127.0.0.1:7777 once you run the startup file and the server becomes online. However, you must still add Windows Firewall port forwarding rules if you want your server to be accessible to the public which will be covered in the following section.

Port Forwarding your server

In order to ensure that your server is accessible to the public, you must alter port forwarding rules for the ports that the dedicated server process is using. You can do this either through Powershell commands directly which is easier, or regularly through the Windows Defender Firewall page.

  • Via Powershell
  • Via Windows Defender

Open your Windows search box, and search for Powershell. Make sure to right-click and Run as Administrator so that permissions are accessible and everything works correctly.

info

Ensure you run your Powershell in Administrator mode, otherwise the settings may not apply correctly.

Next, copy and paste the following commands into your Powershell Prompt:

New-NetFirewallRule -DisplayName "ARKSA Server" -Direction Inbound -LocalPort 7777,7778,27015 -Protocol TCP -Action Allow
New-NetFirewallRule -DisplayName "ARKSA Server" -Direction Inbound -LocalPort 7777,7778,27015 -Protocol UDP -Action Allow
New-NetFirewallRule -DisplayName "ARKSA Server" -Direction Outbound -LocalPort 7777,7778,27015 -Protocol TCP -Action Allow
New-NetFirewallRule -DisplayName "ARKSA Server" -Direction Outbound -LocalPort 7777,7778,27015 -Protocol UDP -Action Allow

These commands will automatically create firewall rules which are necessary for your Ark: Survival Ascended server to be accessible to the public.

Once you have added these rules, your server will now be accessible which means you will be able to connect to it through your server's IP address. You can do this by opening your in-game console on Ark: Survival Ascended and running open [your_ip_address]:7777.

We recommend that you configure your server settings first through the following section before accessing your server.

Configuration

By this stage, you have finished the setup for your Ark: Survival Ascended dedicated server. You can perform further server configuration through two configuration files found within the directory of your server.

Firstly, navigate to the following directories:

../steamapps/common/Ark Survival Ascended Dedicated Server/ShooterGame/Config/
../steamapps/common/Ark Survival Ascended Dedicated Server/ShooterGame/Saved/Config/WindowsServer/

You will be able to find both DefaultGameUserSettings.ini and Gameusersettings.ini configuration files. In these files, you can edit a wide range of variables and options regarding your server.

CROSSPLAY SUPPORT

Since 18 November 2023, server owners need to manually install the certificate revocation list that can be obtained from https://dev.epicgames.com/ (or just directly from http://crl.r2m02.amazontrust.com/r2m02.crl). The downloaded r2m02.crl file must be installed (right-click on the file) by selecting Place all certificates in the following store and selecting Trusted Root Certification Authorities. A system restart may be needed.

If before 18 November 2023 server owners installed the r2m02.cer certificate file and the server isn't showing up, that certificate must be removed from the system to properly allow the servers to be visible again. To remove the revoked certificate run (Windows + R) certmgr.msc and search for Amazon RSA 2048 M02 in Trusted Root Certification Authorities. The same must be done running certlm.msc. Finally, a system restart may be needed

Starting & Connecting to your server

Now it is time to start your server. However, in order for the server to start successfully, you will have to install Microsoft Visual C++ 2015 Redistributable to your Windows VPS.

info

You must install Microsoft Visual C++ 2015 Redistributable onto your Windows VPS before attempting to start the server if you do not have it yet, as it is a dependency. Your server may not start if you do not have this installed.

Once you have this installed on your VPS, you can proceed towards starting the server by executing the start-ark.bat file you created previously.

This will open the server's console in a command prompt and begin the startup process. If everthing occurs as expected, your server will be visible in the server list. Alternatively, you will be able to connect directly by opening the console in-game and running open [your_ip_address]:7777.

You have successfully installed Ark: Survival Ascended on your Windows VPS.

VPS: ARK Survival Ascended Dedicated Server Setup | ZAP-Hosting Docs (2024)

FAQs

How to setup an Ark ascended dedicated server? ›

You can set up a dedicated ARK: Survival Ascended-Servers on Windows in just a few steps.
  1. Step 1: Open the ports. ...
  2. Step 2: Install the required files. ...
  3. Step 3: Configure your ARK: Survival Ascended server. ...
  4. Step 4: Start the server. ...
  5. Step 5: Establish a connection to your ARK: Survival Ascended server.
Nov 13, 2023

How to setup VPS on dedicated server? ›

A step-by-step guide to VPS setup and management
  1. Step 1: Choose a VPS provider. ...
  2. Step 2: Create a new virtual machine instance with the desired operating system and specifications. ...
  3. Step 3: Connect to the VPS using SSH. ...
  4. Step 4: Update the package manager and install any necessary software packages.
Dec 14, 2023

Can you run Ark server on VPS? ›

With a Gaming VPS, you are free to set up your own server. You can install Ark in your own way and configure everything you need. Unlike on an official server, you also can install community mods.

How to get ARK: Survival Ascended to run? ›

ARK: Survival Ascended system requirements state that you will need at least 16GB of RAM. If possible, make sure you have 32GB in order to run ARK: Survival Ascended to its full potential. An Intel Core i7-6800K CPU is required at a minimum to run ARK: Survival Ascended.

How to install mods on ARK ascended server? ›

Downloading a mod in-game
  1. Agree to the terms & conditions.
  2. Go to "Browse mods" to view the currently available mods. ...
  3. Once the mod is installed you can create a new game. ...
  4. Go to “Mod settings” > “Available mods”
  5. select your newly installed mod and select “Activate mod”.
Nov 7, 2023

What ports does ARK: Survival Ascended use? ›

ASA uses two key ports:
  • Game Port: 7777 UDP by default.
  • RCON Port: 27020 TCP by default.
Oct 31, 2023

What is the difference between VPS and dedicated server? ›

Summary of differences: dedicated server vs. virtual private server. Dedicated server hosting offers complete control over all of the resources, disk space, and system resources that a server has. A VPS is a partitioned segment of a physical server with predetermined allocation of limited physical resources.

How to setup VPS from scratch? ›

  1. Step 1: Access a Virtual Private Server (VPS) by Using Secure Shell (SSH) ...
  2. Step 2: Get Your Server Up-to-Date. ...
  3. Step 3: Make a New User Account. ...
  4. Step 4: Authenticate Using an SSH Key. ...
  5. Step 5: Firewall Set-Up.

How to activate VPS? ›

How to set up a VPS
  1. Pick a VPS provider. ...
  2. Choosing and purchasing a VPS. ...
  3. Connecting to your VPS. ...
  4. Getting started with server management. ...
  5. Updating your server. ...
  6. Create a new user with superuser privileges. ...
  7. Generate SSH keys. ...
  8. Change the default SSH port.
Mar 8, 2023

Can I host a dedicated Ark server and play on the same PC? ›

If you choose to build your own server, you'll need to purchase another PC or console to play ARK. The platform hosting the server won't have enough resources to also accommodate gameplay. If you're running your own server, you may be responsible for regular hardware and software maintenance checks.

How do I run a dedicated server on Ark Survival Evolved? ›

Server Installation
  1. Install SteamCMD on your host.
  2. Create a folder to house the server files on a volume with at least 15GB of free disk space. ...
  3. Launch SteamCMD on your host and use it to download the server files. ( ...
  4. Use app id 376030 for Survival Evolved or use 445400 for Survival of The Fittest.

How much does it cost to host an Ark server? ›

Pricing. Renting an Ark Survival Evolved server from ServerBlend is designed to accommodate a range of needs. The standard plan starts at $18 per month, suitable for most users, while the premium plan starts at $30 per month, offering the fastest hardware and fewer clients per node for enhanced performance.

Is ARK: Survival Ascended well optimised? ›

Ark: Survival Ascended has optimization problems that need to be addressed for better performance. Updating graphics drivers and disabling certain settings like volumetric clouds and fog can improve FPS.

How much RAM does Ark Ascended use? ›

Ark: Survival Ascended PC Requirements
Minimum SpecsRecommended Specs
ProcessorAMD Ryzen 5 2600X, Intel Core i7-6800KAMD Ryzen 5 3600X, Intel i5-10600K
Memory16 GB RAM32 GB RAM
GraphicsAMD Radeon RX 5600 XT, NVIDIA GeForce 1080AMD Radeon RX 6800, NVIDIA GeForce RTX 3080
DirectXVersion 12
3 more rows
Oct 25, 2023

What is the best computer to run ark ascended? ›

The AMD RX 7900 XT ($800) is our recommended choice for playing Ark: Survival Ascended with a 1080p resolution.

How to set up a dedicated ARK server? ›

Server Installation
  1. Install SteamCMD on your host system.
  2. Create a folder/directory to store the server files. ...
  3. Launch SteamCMD on your host and use it to download the server files. ...
  4. Create a script to launch the server with your desired options and settings.

How to play with friends in ARK Ascended? ›

You need to set a server name and password for your non-dedicated server, and share it with your friends. You also need to enable the option "Show my server to the public" in the server settings. Alternatively, you can invite your friends directly from the game menu or the Steam overlay.

How does ascension work in ARK? ›

If you want to experience the story ingame, you probably shouldn't continue reading on this page. Ascension is the course of defeating the final boss in a canonical ARK, ascending the Survivor and transferring the character to the next ARK.

References

Top Articles
Latest Posts
Article information

Author: Allyn Kozey

Last Updated:

Views: 6351

Rating: 4.2 / 5 (63 voted)

Reviews: 94% of readers found this page helpful

Author information

Name: Allyn Kozey

Birthday: 1993-12-21

Address: Suite 454 40343 Larson Union, Port Melia, TX 16164

Phone: +2456904400762

Job: Investor Administrator

Hobby: Sketching, Puzzles, Pet, Mountaineering, Skydiving, Dowsing, Sports

Introduction: My name is Allyn Kozey, I am a outstanding, colorful, adventurous, encouraging, zealous, tender, helpful person who loves writing and wants to share my knowledge and understanding with you.