SelfServr Guide
Path of Titans Dedicated Server Setup
How to get a Path of Titans dedicated server running on your own machine, from downloading the server files to starting it up.
1. Get the server files
Path of Titans isn't distributed through Steam. Download the dedicated server directly from Official Path of Titans hosting wiki.
2. Required ports
Forward these ports to the server machine's local IP address on your router, and allow them through the server's firewall. See the port forwarding guide for how.
3. Start the server
Windows
PathOfTitansServer-Win64-Shipping.exe -AuthToken=%AG_AUTH_TOKEN%
Path of Titans is distributed through Alderon Games' own tool, AlderonGamesCmd, rather than SteamCMD. Generate a free auth token from your Alderon Games account first (setting it as the AG_AUTH_TOKEN environment variable avoids Windows' command-line length limit), then use AlderonGamesCmd to download the server files before running the command above.
Full configuration reference: Official Path of Titans hosting wiki.
4. Save it as a script (optional, but recommended)
Saving the commands above as scripts means starting and updating the server is a single double-click instead of retyping them, and it's what lets Task Scheduler or systemd start the server for you -- see keeping it running 24/7.
Start script
Windows -- start-server.bat
@echo off cd /d "%~dp0" PathOfTitansServer-Win64-Shipping.exe -AuthToken=%AG_AUTH_TOKEN%
Save either script in the same folder as the server executable -- %~dp0 (Windows) and $(dirname "$0") (Linux) both mean "wherever this script itself lives", so it works regardless of the exact path you installed to.
5. Generate a config file
Use the Path of Titans config generator to fill in server name, password, max players and more, and download a ready-to-use Game.ini.
Open the Path of Titans config generator →Keep it running
Once your Path of Titans server is working, see our guide on keeping it running 24/7 so it survives a reboot or crash without you needing to start it by hand.
Frequently asked questions
How do I install a Path of Titans dedicated server?
Download it directly from Official Path of Titans hosting wiki, then run it from the install directory. See "Get the server files" and "Start the server" above for the exact commands.
What port does a Path of Titans server use?
UDP 7777 by default, forwarded to the server machine's local IP address. See the port forwarding guide for how.
How do I configure a Path of Titans server?
Use the Path of Titans config generator to fill in server name, password, max players and more, and download a ready-to-use Game.ini.
How do I keep a Path of Titans server running?
Set it up as a Windows Task Scheduler task or a Linux systemd service so it survives a reboot or crash without you starting it by hand -- see the keeping it running 24/7 guide.
Players still can't connect?
If the server starts fine but friends can't reach it, see the connection troubleshooting guide -- it covers CGNAT, firewall issues, port forwarding mistakes and more, and includes an interactive diagnostic.