-
Notifications
You must be signed in to change notification settings - Fork 0
How to set up RCON management for a Gportal server
This guide will show you how to set up RCON management for a Gportal server. With this setup you will be able to remotely control your Gportal server, including seeing who is online, banning/kicking players and save management.
You need:
- Any kind of server/computer, Linux (I will be using an Ubuntu server) or Windows
- Some basic networking knowledge
-
Create folder, download and generate config
mkdir astro-starter && cd astro-starter && wget https://github.com/konsti219/astro-starter/releases/latest/download/astro-starter && ./astro-starter
-
This will generate the default config file
starter.json
. -
Edit the config file with
nano starter.json
. -
Delete what's already there and paste this
{
"webserverPort": 5000,
"owner": "<your name>",
"servers": [
{
"id": "remoteserver",
"type": "remote",
"name": "<Enter your server Name>",
"IP": "<Server IP>",
"port": <Server port>,
"consolePort": <Console Port>,
"consolePassword": "<Console password (go to Configuration files on the GPortal website and find it in AstroServerSetting.ini)>"
}
]
}
- Replace the things in the
<placeholders>
with your information
Note: more documentation on the configuration file can be found here: TODO
- run
astro-starter
(I recommend using pm2 for this) - Manage and stop the server with the web interface at http://localhost:5000.
Don't use Windows. Basically download the tool like for a local server and do the configuration file like in The Linux section.
- Start the server by double-clicking
start.bat
Note (for more advanced users): you can start astro-starter.exe
in any way you like, the batch file is only there to show you the output in case an error occurs.
- Manage and stop the server with the web interface at http://localhost:5000.
Further reading:
Need help? Join the Astroneer Discord and ask in #self-host-talk