Skip to main content

Migration from Jexactyl 3.x

Run the following commands:

Warning

Make sure you are in the /var/www/pterodactyl or /var/www/jexactyl directory. Before proceeding.

And if a command doesn't work, please try it with sudo.

sudo bash <(curl -s https://raw.githubusercontent.com/kokofixcomputers/Jexactyl/develop/update-script.sh)

If you prefer not to run scripts, run the following commands:

cd /var/www/jexactyl
php artisan down
sudo curl -L https://github.com/kokofixcomputers/jexactyl/releases/latest/download/panel.tar.gz | sudo tar -xzv
sudo chmod -R 755 storage/* bootstrap/cache
composer install --no-dev --optimize-autoloader
php artisan migrate --seed --force

Then, run ONE of these based on what you're using:

# If using NGINX or Apache (not on CentOS):
chown -R www-data:www-data *

# If using NGINX on CentOS:
chown -R nginx:nginx *

# If using Apache on CentOS:
chown -R apache:apache *

Finally, run:

php artisan up