keep getting this error

Bus16

New member
Joined
Jun 1, 2019
Messages
5
unable to get user rorserver, Is it existing?
 
Last edited:
The server runs in the background by default to prevent it from shutting down when exiting the terminal window or SSH session. Can be changed in your server.cfg file, though it's not recommended:
Code:
foreground = y
Make sure to kill the old processes if needed:

Code:
# Display list of all running "rorserver" processes with their pids
ps aux | grep rorserver

# Example: sudo kill 1274
sudo kill pid

Edit:
After doing some testing with the Linux package, I found a bug with the log verbosity setting: https://github.com/RigsOfRods/ror-server/issues/155
Workaround would be to enable foreground mode and run the server in a screen session.
 
Last edited:
Back
Top