Установка Pterodactyl
sudo apt update
sudo apt install git nodejs npm -ysudo apt install mariadb-server mariadb-client -ysudo mysql -u root
CREATE DATABASE pterodactyl;
CREATE USER 'pterodactyl'@'localhost' IDENTIFIED BY 'strongpassword';
GRANT ALL PRIVILEGES ON pterodactyl.* TO 'pterodactyl'@'localhost';
FLUSH PRIVILEGES;
EXIT;sudo useradd -d /var/www/pterodactyl -s /bin/bash pterodactylsudo curl -sS https://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin --filename=composersudo git clone https://github.com/pterodactyl/panel.git /var/www/pterodactylLast updated