Skip to content

A step-by-step guide to set up a Counter-Strike 1.6 server on an AWS EC2 instance. Learn how to run and manage the server with ease.

Notifications You must be signed in to change notification settings

faraguti/AWS-CS-Server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 

Repository files navigation

CS 1.6 Server Setup on AWS EC2 Instance (Ubuntu 22.04)

This repository contains instructions on how to set up and run a CS 1.6 server on an AWS EC2 instance running Ubuntu 22.04. Follow the steps below to get your server up and running.

Prerequisites

Before you begin, ensure you have the following:

  • Basic familiarity with working on the Linux command-line interface.

Table of Contents

  1. Create an EC2 Instance on AWS
  2. Setup CS 1.6 Server

Creating an EC2 Instance on AWS

Follow these steps to create an EC2 instance on AWS for hosting your CS 1.6 server:

  1. Sign in to AWS Console:


  2. Navigate to EC2 Dashboard:

    • Once logged in, navigate to the EC2 Dashboard by clicking on "Services" in the top menu and selecting "EC2" under "Compute".

  3. Launch Instance:

    • Click on "Launch Instance" to start the instance creation process.

  4. Choose an Amazon Machine Image (AMI):

    • Select an Ubuntu 22.04 LTS AMI or any other Ubuntu AMI you prefer.

  5. Choose an Instance Type:

    • Select the instance type based on your requirements (e.g., t2.micro).

  6. Select a Key Pair:

    • Choose an existing key pair or create a new one to allow SSH access to your instance.

  7. Configure Network Settings:

    • You can keep the default settings for these options:
      • Network: Choose the VPC where your EC2 instance will reside.
      • Subnet: Choose a subnet within the selected VPC.
      • Auto-assign Public IP: Select "Enable" to allow your instance to have a public IP address.
  8. Configure Security Group:

    • Create a new security group or use an existing one to define inbound and outbound rules for your server. Make sure to open port 22 for SSH access and the port you'll be using for your CS 1.6 server (e.g., 27015) for both TCP and UDP traffic.

    ⚠️ To improve security, consider updating the security group's inbound rule for SSH (port 22) to only allow access from your specific IP address. This way, only your IP will be able to SSH into the instance, reducing the risk of unauthorized access

    ⚠️ Opening both TCP and UDP ports 27015 (used by the CS 1.6 server) to "0.0.0.0" (any IP address) allows any player to connect to your server.

  9. Add Storage:

    • Define the storage size and type (20GiB is enough).

  10. Review and Launch Instance:

    • Review your instance configuration and click "Launch Instance" when ready.



Setup CS 1.6 Server

  1. SSH into your EC2 Instance:

    • Open your terminal (on Linux/macOS), PowerShell (on Windows/macOS/Linux) or use an SSH client (e.g., PuTTY on Windows).

    • Run these commands, if necessary, to ensure your key is not publicly viewable.

      Linux/macOS

      chmod 400 your-ec2-key-pair.pem
      

      Windows
      Replace 'C:\path\to\private_key.pem' with the actual path to your private key file

       $pathToPrivateKey = 'C:\path\to\private_key.pem'
      

      Set restrictive permissions (Read and Write for the owner, no permissions for others)

       icacls $pathToPrivateKey /inheritance:r
       icacls $pathToPrivateKey /grant:r 'NT AUTHORITY\SYSTEM:(R)'
       icacls $pathToPrivateKey /grant:r 'BUILTIN\Administrators:(R)'
       icacls $pathToPrivateKey /remove:g '*S-1-1-0'
      
    • Connect to your Ubuntu 22.04 EC2 instance using the public IP address provided by AWS:

      ssh -i your-ec2-key-pair.pem ubuntu@your-ec2-public-ip
      

    ⚠️ Replace "your-ec2-key-pair.pem" with the filename of your EC2 key pair and "your-ec2-public-ip" with your EC2 instance's public IP address.


  2. Create a New User (Optional):

    To improve security and organization, we'll create a new user for running the CS 1.6 server:

    • Switch to the superuser (root) account using the following command:

      sudo su
      
    • Create a new user named "cs-server" with the following command:

      adduser cs-server
      
    • Add the "cs-server" user to the "sudo" group to grant administrative privileges:

      usermod -aG sudo cs-server
      
    • Switch to the newly created "cs-server" user with the following command:

      su cs-server
      

  3. Create Directory and Install Dependencies:

    • Create a directory for your CS 1.6 server files:
      mkdir /home/cs-server/cs1.6
      
    • Add Multiverse Repository:
      sudo add-apt-repository multiverse
      
    • Enable 32-bit Architecture:
      sudo dpkg --add-architecture i386
      
    • Update Package Lists:
      sudo apt update
      
    • Install Dependencies:
      sudo apt install lib32gcc-s1 steamcmd -y
      

  4. Install CS 1.6 Server:

    • Launch SteamCMD to download and install the CS 1.6 server files:

      steamcmd
      
    • Log in to Steam anonymously to access the necessary CS 1.6 server files:

      login anonymous
      
    • Set the installation directory to /home/cs-server/cs1.6:

      force_install_dir /home/cs-server/cs1.6
      
    • Download and install the CS 1.6 server files (App ID 90) and validate the installation:

      app_update 90 validate
      

    ⚠️ Note: The installation process may take some time, and it's possible that it could fail or stop due to various reasons, such as network interruptions or server load. If the installation process fails, don't worry; simply run the command again until the installation is successful.

  5. Prepare Server Configurations:

    • Change the directory to the CS 1.6 server folder:

      cd /home/cs-server/cs1.6/cstrike
      
    • Create the required configuration files:

      touch listip.cfg |
      touch banned.cfg
      

  6. Start the CS 1.6 Server:

    • Now go back to /home/cs-server/cs1.6 folder and run the following command to start the server with the desired parameters:
      ./hlds_run -game cstrike +maxplayers 12 +map de_dust2
      

    ⚠️ Note: The first time you run the server after installation, you may encounter a "FATAL ERROR (shutting down): Unable to initialize Steam" error, and the server won't start successfully. This issue is common after the initial installation. To resolve it, simply run the same command again, and the server should start without any issues on the second attempt. Subsequent server starts should work smoothly.

  7. Accessing Your CS 1.6 Server

    • The CS 1.6 server is now running! Players can connect to it using the public IP address of your EC2 instance and the port specified for the server.



  • EXTRA: Run CS 1.6 Server in the Background

    • To run the CS 1.6 server in the background and keep it running after you log out of the SSH session, you can use the screen utility. screen is a terminal multiplexer for Unix-like operating systems, including Linux. It allows you to run multiple terminal sessions within a single window, and most importantly, it enables you to detach and reattach to these sessions. If you don't have it installed, you can install it with the following command:
      sudo apt install screen
      
    • After installing screen, you can start the CS 1.6 server inside a screen session, like this:
      screen -S cs16-server ./hlds_run -game cstrike +maxplayers 12 +map de_dust2
      
    • To detach from the screen session and leave the server running in the background, press Ctrl + A followed by Ctrl + D. If you need to reattach to the screen session later, use the following command:
      screen -r cs16-server
      

    ⚠️ When running the CS 1.6 server in a screen session, you ensure the server remains active and functional even when you are not connected to the EC2 instance via SSH. It allows you to manage the server remotely and maintain continuity in your server's operation, making it a convenient and reliable solution for hosting CS 1.6 on an AWS EC2 instance.



Troubleshooting

If you encounter any issues during the setup process or while running the server, refer to the troubleshooting section or open an issue in this repository.


This guide was created to help you set up a CS 1.6 server on an AWS EC2 instance. Please be aware of the licensing agreements and follow the terms of use for CS 1.6.

If you find any improvements or have suggestions for this guide, feel free to contribute to this repository.

Happy gaming!

About

A step-by-step guide to set up a Counter-Strike 1.6 server on an AWS EC2 instance. Learn how to run and manage the server with ease.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published