2020-11-10 09:33:37 -08:00

1.2 KiB

CentOS 8

In this guide we will install Pterodactyl's Wings v1.X — including all of it's dependencies — and configure it to use a SSL connection.

toc

::: tip This guide is based off the official installation documentation but is tailored specifically for CentOS 8. :::

Install Requirements

We will first begin by installing all of the Wings' required dependencies.

Docker

dnf install -y dnf-utils device-mapper-persistent-data lvm2

dnf config-manager --add-repo=https://download.docker.com/linux/centos/docker-ce.repo

dnf install -y docker-ce --nobest

systemctl enable docker
systemctl start docker

FirewallD changes

firewall-cmd --add-port 8080/tcp --permanent
firewall-cmd --add-port 2022/tcp --permanent
firewall-cmd --permanent --zone=trusted --change-interface=pterodactyl0
firewall-cmd --zone=trusted --add-masquerade --permanent
firewall-cmd --reload

Installing the Wings

Great, now all of the dependencies and firewall rules have been dealt with. From here follow the official Wings installation documentation.