DocsDocs

Quick Start

Get Hypanel up and running on your Linux server in just a few minutes with our simple installation guide.

This guide will walk you through installing Hypanel on your Linux server. The installation process is straightforward and typically takes just a few minutes to complete.

Prerequisites

Before you begin, ensure you have:

  • A Linux server running Ubuntu 22.04/24.04 or Debian 12/13
  • Root or sudo access to your server
  • curl installed on your system

Install curl

If curl is not already installed on your system, install it using the following command:

# Ubuntu/Debian
sudo apt-get update && sudo apt-get install -y curl

Installation Steps

Run the installation script directly from the repository:

sudo bash -c "$(curl -fsSL https://raw.githubusercontent.com/OnyxWm/hypanel/main/install.sh)"

This method downloads and executes the installation script in one command.

Method 2: Manual Download

Alternatively, you can download the script first and then run it manually:

curl -fsSL https://raw.githubusercontent.com/OnyxWm/hypanel/main/install.sh -o install.sh
sudo bash install.sh

During the installation process, you'll be prompted to create an administrator password. Make sure to save this password securely, as you'll need it to log into the web panel.

Accessing Hypanel

Once the installation is complete:

  1. Access the web panel: Open your web browser and navigate to http://[your-server-ip]:3000

    • Replace [your-server-ip] with your server's actual IP address or hostname
    • If you're accessing from the same machine, you can use http://localhost:3000
  2. Login: Use the administrator password you created during the installation process

You should now see the Hypanel dashboard and can begin managing your Hytale servers!

Next Steps

Now that Hypanel is installed, you can:

  • Create your first Hytale server
  • Configure server settings
  • Set up automatic backups
  • Manage players and permissions

For more detailed information about specific features, refer to the rest of the documentation.

On this page