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 VPS on dedicated server? ›

6 Steps to Configure VPS Server – Easy Setup
  1. Access the server via SSH.
  2. Update the Server.
  3. Create a new user.
  4. Change the default SSH port.
  5. Generate SSH keys.
  6. Set up a firewall in VPS.

How to set up an ARK ascended 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

Does ARK: Survival Ascended have dedicated servers? ›

How to Host an ARK: Survival Ascended Dedicated Server | Hostinger Help Center. Embarking on the epic journey of ARK: Survival Ascended becomes even more immersive and customizable with the power of a dedicated server at your fingertips.

What is the app ID for the ARK ascended dedicated server? ›

The App ID 2430930 is the ARK: Survival Ascended Dedicated Server application.

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 split a dedicated server into VPS? ›

How to Split a Dedicated Server into VPS?
  1. Log into WHM as root administrator.
  2. Go to Transfers and select the Transfers Tool option.
  3. On the next screen, input your server credentials, and you will get a list of your Packages and Accounts.
  4. Select the account(s) you wish to migrate to the VPS.
  5. Click on the blue Copy button.

What ports to open for ARK: Survival Ascended server? ›

Open the server to LAN (Others on your local network)

We need to open ports 7777 , 7778 , and 27015 . If you set a custom port above, then forward that.

Does ARK: Survival Ascended have tether? ›

Explained. Ark Survival Ascended has a tether distance feature that co-op players must keep in mind when playing the survival title. Tether distance essentially dictates how far you can go from the main host.

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

Can you host a non dedicated server in ARK: Survival Ascended? ›

In ARK Survival Ascended, you can host a non-dedicated server that allows you to create a private lobby with custom settings for the world based on your preference.

How to enable crossplay on ARK: Survival Ascended dedicated server? ›

Step 1: Log into our game control panel (https://gamepanel.hosthavoc.com) and access your game server. Step 2: Click the Command Line Manager button. Step 4: Click New. Step 6: Enter -crossplay in the Additional Parameters text field.

How to update ARK ascended dedicated server? ›

For updating your server follow the same steps as if you would be downloading your server files.
  1. Open SteamCMD and set your Install directory: force_install_dir D:\servers\PvP1.
  2. SteamCMD Login: login anonymous.
  3. Update your server: app_update 2430930 validate.

How to set up a dedicated ARK server? ›

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.

Is ark survival ascended cross platform? ›

Summary. Ark: Survival Ascended, a remake of Ark: Survival Evolved, supports cross-platform play between PlayStation 5 and Xbox X/S on official servers, but crossplay between PC and console is temporarily disabled due to anti-cheat measures being implemented.

How to create an own VPS server? ›

  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 set up personal nameservers VPS and dedicated servers? ›

How To Setup Private Name Servers For VPS And Dedicated Servers?
  1. Login to WHM and then go to DNS Functions section> Edit DNS Zone menu.
  2. Choose the domain from drop-down list for which you'd like to set the nameservers for and then click Edit.
  3. Update SOA record with your primary nameserver and an active email address.

How do I setup a VPS webserver? ›

How to host a website on a VPS
  1. Choose the right VPS. ...
  2. Connect to your VPS. ...
  3. Setting up website hosting. ...
  4. Install and configure your web server. ...
  5. Install your preferred CMS / or migrate existing site. ...
  6. Set up your website on WordPress (or other CMS) ...
  7. Test your website. ...
  8. Point your domain name (Via DNS) to your VPS to make it live.
Oct 27, 2023

How to setup local VPS? ›

What are the key steps in setting up a VPS? Key steps include selecting a hosting plan, accessing the server via SSH, updating software, creating users with appropriate privileges, setting up public key authentication, configuring a firewall, and hosting your website or application.

Top Articles
Bedbathandbeyond Flemington Nj
Difference Between Nordictrack 1750 And 2450
What Is Single Sign-on (SSO)? Meaning and How It Works? | Fortinet
Fighter Torso Ornament Kit
Asist Liberty
Guardians Of The Galaxy Showtimes Near Athol Cinemas 8
Brgeneral Patient Portal
Jesse Mckinzie Auctioneer
Ou Class Nav
Cars For Sale Tampa Fl Craigslist
Day Octopus | Hawaii Marine Life
Https //Advanceautoparts.4Myrebate.com
Scholarships | New Mexico State University
Chile Crunch Original
2016 Ford Fusion Belt Diagram
Cbssports Rankings
Pasco Telestaff
Play Tetris Mind Bender
Ocala Craigslist Com
Riverstock Apartments Photos
Keshi with Mac Ayres and Starfall (Rescheduled from 11/1/2024) (POSTPONED) Tickets Thu, Nov 1, 2029 8:00 pm at Pechanga Arena - San Diego in San Diego, CA
Ts Modesto
The Monitor Recent Obituaries: All Of The Monitor's Recent Obituaries
Craigslist/Phx
1475 Akron Way Forney Tx 75126
Chadrad Swap Shop
Dubois County Barter Page
Hotel Denizen Mckinney
Giantess Feet Deviantart
Great Clips On Alameda
The Mad Merchant Wow
Fifty Shades Of Gray 123Movies
PruittHealth hiring Certified Nursing Assistant - Third Shift in Augusta, GA | LinkedIn
F9 2385
Riverton Wyoming Craigslist
What Is A K 56 Pink Pill?
Mugshots Journal Star
Vindy.com Obituaries
Martha's Vineyard – Travel guide at Wikivoyage
John M. Oakey & Son Funeral Home And Crematory Obituaries
Eat Like A King Who's On A Budget Copypasta
Fluffy Jacket Walmart
Victoria Vesce Playboy
Pas Bcbs Prefix
Walmart Listings Near Me
CPM Homework Help
15:30 Est
Tommy Gold Lpsg
Bones And All Showtimes Near Emagine Canton
How Did Natalie Earnheart Lose Weight
Die 10 wichtigsten Sehenswürdigkeiten in NYC, die Sie kennen sollten
Cataz.net Android Movies Apk
Latest Posts
Article information

Author: Twana Towne Ret

Last Updated:

Views: 6247

Rating: 4.3 / 5 (64 voted)

Reviews: 95% of readers found this page helpful

Author information

Name: Twana Towne Ret

Birthday: 1994-03-19

Address: Apt. 990 97439 Corwin Motorway, Port Eliseoburgh, NM 99144-2618

Phone: +5958753152963

Job: National Specialist

Hobby: Kayaking, Photography, Skydiving, Embroidery, Leather crafting, Orienteering, Cooking

Introduction: My name is Twana Towne Ret, I am a famous, talented, joyous, perfect, powerful, inquisitive, lovely person who loves writing and wants to share my knowledge and understanding with you.