Skip to main content

Installation

ServerRawler offers two primary installation methods: downloading pre-compiled binaries for immediate use or building from source for developers.

The easiest way to get started with ServerRawler is to download a pre-compiled executable for your operating system from the GitHub Releases page. This method does not require you to have Rust installed.

  1. Go to GitHub Releases: Visit the ServerRawler Releases page.
  2. Download the latest release: Find the latest stable release and download the Linux executable (e.g. serverrawler-linux-amd64).
  3. Make it executable: After downloading, we must unzip the archive and make the file executable.
tar -xzf serverrawler-linux-amd64.tar.gz
chmod +x ServerRawler
  1. Create directory (optional): You can create a new directory for ServerRawler to keep things organized:
# Create directory
mkdir serverrawler_workspace
# Move the downloaded executable into the directory
mv ServerRawler serverrawler_workspace/
# Go into the directory
cd serverrawler_workspace
  1. Test: Now, you can test the executable by running it in your terminal or command prompt:
./ServerRawler --help

Next Steps: Configuration and Database Setup

The next step is to set up your database connection. If you prefer to run ServerRawler without a database, you can skip the database setup and use the --no-database argument.

  • Database Setup: ServerRawler requires a PostgreSQL database to store collected server data.
  • Configuration Guide: Learn how to set up the configurations files and prepare your PostgreSQL database.