Source DS Management Tools

From SteamFriends Wiki

Jump to: navigation, search


There are several neat tools out there that makes using the Source Dedicated Server much easier. These tools can automatically restart your server when it has crashed or stopped responding for less downtime, and make it much easier to run multiple game servers on one machine.

Contents

[edit] ServerChecker

This tool, in my opinion, is the best out there for managing your servers under Windows.

[edit] ServerDoc

Has many of the same features as ServerChecker, but also allows you to setup a simple remote page to control your servers using PHP.

[edit] ServerChecker for Linux

This is a great way to manage your servers under the Linux operating system, but requires some knowledge of how to use the linux shell. If you can't find the download, here is a direct link: http://sgr.dumbclan.com/Misc/ServerCheckerLinux.zip

[edit] Basic Linux Shell Script

An alternative to using ServerCheck for Linux is to create a simple bash script that runs the server in a screen, and restarts it when the process ends. To do this, create a file called srcds.sh in the directory that srcds is located. This assumes you have screen installed on your Linux server.

#!/bin/sh
echo "Starting Cs:Source Server"
sleep 1
screen -A -m -d -S css-server ./srcds_run -console -game cstrike +map de_dust +maxplayers 16 -autoupdate

Then, give it executable rights.

chmod +x srcds.sh

To run the server, you simply type ./srcds.sh and your server will run in the background. You can then type screen -x css-server to gain access to the server's console, and press Ctrl + A + D to detach from the console and leave it running in the background.

Copyright © 2003-2007 Techconnect | Advertising | Policy    Windows Live Alerts
Home | News | Articles | Development | Downloads | Community | Gallery | Wiki | Overview | Contact Us | Sitemap | Back to Top