Running A Server

As you already know Skyrim Multiplayer is releasing public server builds. Here is an instruction on running your own server.

Installation

Windows

The server requires Windows 8.1 / Windows Server 2012 or higher. It may still launch on older operating systems, but correct work isn't guaranteed.

You obviously need to have 64-bit Windows version since the server is 64-bit program.

  1. Create a new directory for server installation.

  2. Download the latest server build from the project's websitearrow-up-right.

  3. Extract everything into a previously created directory.

  4. The main executable is skymp5-server.exe. It's a command line app so you are free to launch it via cmd.exe / powershell or your custom .bat script.

Linux

Only Windows builds are supported currently.

Configuration

Once you install the server, you should be able to launch it. We distribute server builds with server-settings.json included, but its default values are only usable to verify that server works. After launching the server you will see a server called My Server in skymp launcher. You also will be able to connect, but players from the Internet will not. You need to change the ip field in server-settings.json to get this functionality to work.

{
  "dataDir": "data",
  "loadOrder": [
    "Skyrim.esm",
    "Update.esm",
    "Dawnguard.esm",
    "HearthFires.esm",
    "Dragonborn.esm",
    "FarmSystem.esp"
  ],
  "ip": "127.0.0.1", // <=
  "name": "My Server"
}

Last updated