mirror of
https://github.com/pterodactyl/documentation.git
synced 2025-12-11 05:44:45 -06:00
1022 B
1022 B
Install wings on CentOS 7
This guide covers the installation of the requirements for a daemon with SSL enabled.
Install Requirements
The daemon requirements can be found here
General Requirements
yum install -y tar unzip make gcc gcc-c++ python
Docker
yum install -y yum-utils device-mapper-persistent-data lvm2
yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
yum install -y docker-ce
systemctl enable docker
systemctl start docker
nodejs
curl --silent --location https://rpm.nodesource.com/setup_8.x | bash -
yum install -y nodejs
server ports
firewall-cmd --add-port 8080/tcp --permanent
firewall-cmd --add-port 2022/tcp --permanent
firewall-cmd --permanent --zone=trusted --change-interface=docker0
firewall-cmd --reload
Installing the daemon
Follow the regular guide to install the daemon