Create Your Account
Open the Dashboard
Go to the SimpleCloud Dashboard
Create or Join a Network
After signing in, you’ll choose how to get started:- Create New Network
- Join Existing Network
- Enter a name for your network (e.g., “My Minecraft Network”)
- The URL slug is auto-generated but can be customized
- Optionally add a description
- Click Create Network
Install the CLI
The setup wizard will display the installation command for you. Simply copy and run it in your terminal.- Linux / macOS
- Windows
Connect Your Server Host
A server host is the machine that will run your Minecraft servers.Run the Setup Command
The dashboard displays a setup command with your unique code. Copy and run it on your server:
Wait for Setup
The setup will:
- Check that all requirements are installed
- Download necessary components
- Register your machine as a server host
Inviting Team Members
To add others to your network:- Go to Settings → Members
- Click Invite Member
- Enter their email and choose their role
Troubleshooting
curl: command not found
curl: command not found
Symptom: Install script fails because curl is not installed.Solution: Install curl for your system:
Permission denied during install
Permission denied during install
Symptom: Install script fails with permission errors.Cause: Script needs write access to
/usr/local/bin.Solution:- Run with sudo:
sudo /bin/bash -c "$(curl -fsSL ...)" - Or install to a user directory and add to PATH
Network timeout or connection refused
Network timeout or connection refused
Symptom: Install script hangs or fails to download.Cause: Firewall blocking outbound connections.Solution: Allow HTTPS (port 443) to:
raw.githubusercontent.comgithub.com
Setup code not working
Setup code not working
Symptom:
simplecloud setup --code=... fails with invalid code error.Cause: Code expired or copied incorrectly.Solution:- Generate a fresh code from the dashboard
- Copy the entire code without extra spaces
- Run the command immediately (codes expire quickly)
Server host not appearing in dashboard
Server host not appearing in dashboard
Symptom: Setup completes but host doesn’t show in dashboard.Solution:
- Check terminal for setup errors
- Verify serverhost is running:
sc status serverhost - Check network connectivity to SimpleCloud
- Review logs:
sc logs serverhost
Requirements check failed
Requirements check failed
Symptom: Setup fails because required software is missing.Solution: Install missing requirements:
| Requirement | Install Command |
|---|---|
| Java 21+ | sudo apt install openjdk-21-jdk |
| screen/tmux | sudo apt install screen |
| Docker | docs.docker.com/engine/install |