1. 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.
     
  2. Wulf

    Wulf Community Admin

    Those aren't really errors. The place you'd want to check is RustDedicated_Data/output_log.txt.
     
  3. I don't have such file....
     
  4. Apparently the problem was that my server didn't have enough RAM so now it works but I have another issue, when I execute my start.sh code I cant see the console, how can I do that I will see it?
     
  5. Wulf

    Wulf Community Admin

    There is no console with Linux servers, so you'd have to check the logs or use RCON.
     
  6. Ok, I can I do that I will have logs?