Find us on social media
Prepare your Hytale server
Requirements and initial configuration to have your Hytale server ready at launch.
Current status of Hytale
Hytale is in active development by Hypixel Studios. While the dedicated server software doesn't have a public release date yet, you can prepare your infrastructure to be ready from day one.
Estimated server requirements
Based on similar games and available information:
| Resource | Minimum | Recommended |
|---|---|---|
| CPU | 2 vCPU | 4 vCPU |
| RAM | 4 GB | 8 GB |
| Disk | 20 GB SSD | 50 GB NVMe |
| Network | 100 Mbps | 1 Gbps |
| OS | Ubuntu 22.04+ | Ubuntu 24.04 LTS |
Choosing a plan at Baires Host
For Hytale servers we recommend a Cloud VPS with at least 4 GB RAM. You can start with a basic plan and scale up when the game launches.
Prepare the operating system
Connect to your VPS and get the system ready:
ssh root@YOUR_IP
apt update && apt upgrade -y
apt install -y curl wget git unzip screen htopCreate a dedicated user
adduser hytale
usermod -aG sudo hytale
su - hytaleInstall common dependencies
Hytale will likely require a modern runtime. Install the most common ones:
# Java (in case it uses JVM like Minecraft)
sudo apt install -y openjdk-21-jre-headless
# Common system libraries for game servers
sudo apt install -y lib32gcc-s1 lib32stdc++6 libc6-i386Configure swap (optional)
If your plan has limited RAM, set up swap as a safety net:
sudo fallocate -l 4G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstabNext steps
When Hytale releases dedicated server software, Baires Host will publish a complete installation guide. In the meantime, your VPS is prepared with an updated OS and base dependencies installed.
Follow our social media and blog to be notified as soon as there's news.