Craftpick

Installer Wings

Installer le daemon Pterodactyl, le relier au panel, et le lancer en service.

Prérequis

  • Un serveur Linux (Debian/Ubuntu)
  • Docker installé
  • Ports nécessaires ouverts (selon ta config panel)

Installer Docker (si besoin)

apt update -y
apt install -y ca-certificates curl
curl -fsSL https://get.docker.com | sh
systemctl enable --now docker

Installer Wings

mkdir -p /etc/pterodactyl
curl -L -o /usr/local/bin/wings https://github.com/pterodactyl/wings/releases/latest/download/wings_linux_amd64
chmod +x /usr/local/bin/wings

Configurer

Depuis ton panel Pterodactyl: crée un node, copie la config Wings, puis colle-la dans le serveur.

nano /etc/pterodactyl/config.yml

Créer le service systemd

nano /etc/systemd/system/wings.service

Activer et démarrer

systemctl daemon-reload
systemctl enable --now wings
systemctl status wings --no-pager
Retour