Hello,
I am trying to run a Rust server on a Linux Ubuntu system but I get an error.
Thats my start.sh code:
Code:#!/bin/sh clear while : do exec ./RustDedicated -batchmode -nographics \ -server.ip IP_HERE \ -server.port 28015 \ -rcon.ip IP_HERE \ -rcon.port 28016 \ -rcon.password "RCON_PASS" \ -server.maxplayers 100 \ -server.hostname "NAME" \ -server.identity "NAME" \ -server.level "Procedural Map" \ -server.seed 12346 \ -server.worldsize 2500 \ -server.saveinterval 300 \-server.globalchat true \ -server.description "DESC" -server.headerimage "LINK" \ -server.url "LINK" echo "\nRestarting server...\n" done
I am getting this error:
(When the RustDedicated is being executed)
Code:Set current directory to /home/rust Found path: /home/rust/RustDedicated Mono path[0] = '/home/rust/RustDedicated_Data/Managed' Mono path[1] = '/home/rust/RustDedicated_Data/Mono' Mono config path = '/home/rust/RustDedicated_Data/Mono/etc' Killed
Then nothing happens (The server obviously doesn't start), any suggestions?
Thanks.
Rust server on Linux - Ubuntu
Discussion in 'Rust Discussion' started by MrNirost, Mar 28, 2017.
-
Wulf Community Admin
Those aren't really errors. The place you'd want to check is RustDedicated_Data/output_log.txt.
-
-
-
Wulf Community Admin
-