Find us on social media
PluginsInstallationSpigotPaper3 min read
How to install plugins on your server
Download and install plugins using the Pterodactyl panel file manager.
Requirements
- A server running Paper, Purpur, or Spigot (plugins don't work on Vanilla)
- Access to your server at panel.baires.host
Step 1: Download the plugin
Download plugins only from trusted sources:
- Modrinth (modrinth.com) — modern, curated
- SpigotMC (spigotmc.org) — largest repository
- Hangar (hangar.papermc.io) — PaperMC official
- Bukkit (dev.bukkit.org) — legacy but still active
Make sure the plugin version matches your server's Minecraft version.
Step 2: Upload to the plugins folder
- Go to panel.baires.host → select your server
- Navigate to Files →
plugins/folder - Click Upload
- Select the downloaded
.jarfile - Wait for the upload to complete
Step 3: Restart the server
- Go to the Console tab
- Type
stopto gracefully shut down - Click Start to boot the server
The plugin will generate its configuration files on first start.
Step 4: Verify installation
In the console, run:
terminal
pluginsOr in-game as OP:
terminal
/pluginsGreen = loaded successfully, Red = error (check console logs).
Configuring plugins
After first start, plugins create config files in plugins/PluginName/:
- Go to Files →
plugins/PluginName/ - Edit
config.ymlor the relevant config file - Save and either restart or run the plugin's reload command
Troubleshooting
- Plugin shows red in /plugins: Check the console for error messages. Common causes: wrong MC version, missing dependency.
- Plugin not appearing: Make sure the file is a
.jarand is directly insideplugins/(not in a subfolder). - Dependency errors: Some plugins require other plugins (e.g., Vault, ProtocolLib). Install dependencies first.
Tips
- Keep plugins updated to avoid security vulnerabilities
- Don't install too many plugins — each one adds overhead
- Test new plugins on a backup before deploying to your main server
- Read the plugin's documentation page for configuration help
Was this guide helpful?