Articles on: Palworld / Server Setup

Palworld | Setup RCON on your Skynode Server

How to Properly Get RCON Working in Your Skynode Palworld Server



Setting up RCON (Remote Console) for your Palworld server on Skynode can enhance your server management experience. Follow these steps to get it up and running:

We will soon add this natively into our server version!

Download ARRCON: Get the latest version of ARRCON suitable for your operating system from ARRCON's GitHub releases.

Note Your Server Ports:
- Access your Skynode panel for your Palworld server.
- Click the network tab at the top right.
- Take note of the primary port (usually in the 8000s) and the secondary port (typically in the high 20,000s).

Prepare Your Server:
- Ensure your Skynode Palworld server is completely offline.
- Consider making a backup of your server, especially if you've made progress in the game.

Set Admin Password:
- Navigate to the Startup section of your Skynode panel.
- Enter an Admin Password.

Copy Default Settings:
- Go to File Manager in your Skynode panel.
- Navigate to /home/container/DefaultPalWorldSettings.ini.
- Open this file and copy all contents (Ctrl+A, then Ctrl+C).

Paste Settings in Palworld Config:
- Navigate to /home/container/Pal/Saved/Config/LinuxServer/PalWorldSettings.ini.
- Open the file and paste the copied contents.

Edit Configuration:
- Toward the bottom of the pasted text, modify the following parameters:
ServerName="YOUR-SERVER-NAME-HERE"
        AdminPassword="YOUR-ADMIN-PASSWORD-HERE"
        PublicPort=PRIMARY-PORT (from step 2)
        RCONEnabled=True
        RCONPort=SECONDARY-PORT (from step 2)


Save Configuration:
- Click SAVE CONTENT at the bottom right of the File Manager page.

Port Forwarding:
- Access your router settings.
- Port forward both your primary and secondary ports.
Warning port forwarding is different for each router and provider please look up your specific router for help on portforwarding

Configure Windows Firewall:
- Open PowerShell as an admin (Windows key, type "Powershell", right-click, run as admin).
- Execute these commands, replacing PRIMARYPORT and SECONDARYPORT with your port numbers:
New-NetFirewallRule -DisplayName "Palworld Server" -Direction Inbound -LocalPort PRIMARYPORT,SECONDARYPORT -Protocol TCP -Action Allow
        New-NetFirewallRule -DisplayName "Palworld Server" -Direction Outbound -LocalPort PRIMARYPORT,SECONDARYPORT -Protocol TCP -Action Allow
        New-NetFirewallRule -DisplayName "Palworld Server" -Direction Outbound -LocalPort PRIMARYPORT,SECONDARYPORT -Protocol UDP -Action Allow
        New-NetFirewallRule -DisplayName "Palworld Server" -Direction Inbound -LocalPort PRIMARYPORT,SECONDARYPORT -Protocol UDP -Action Allow


Add ARRCON to Windows $PATH:
- Follow the guide on Adding ARRCON to PATH.

Connect Using ARRCON:
- Open PowerShell as admin.
- Run the command: ARRCON -H {YOUR SERVER IP} -P {SECONDARYPORT} -p {YOUR ADMIN PASSWORD} --save-host {SERVERNAME}.
- From now on, use ARRCON -S {SERVERNAME} to connect.

Congratulations! You have successfully set up RCON for your PalWorld Server. Link to palworld admin commands.

Updated on: 07/02/2024

Was this article helpful?

Share your feedback

Cancel

Thank you!