#Problems with the Panel

11 messages · Page 1 of 1 (latest)

lilac glen
#

Hey, I need Help, my Panel gives me a ERR_CONNECTION:CLOSED and if i locked up, i get this error:

[2024-06-26 18:24:01] production.ERROR: could not find driver (Connection: mysql, SQL: select * from `settings` where `key` = app:telemetry:uuid limit 1) {"exception":"[object] (Illuminate\\Database\\QueryException(code: 0): could not find driver (Connection: mysql, SQL: select * from `settings` where `key` = app:telemetry:uuid limit 1) at /var/www/pterodactyl/vendor/laravel/framework/src/Illuminate/Database/Connection.php:760)```

Can anyone Help me?
royal bobcatBOT
#

@lilac glen; You appear to be missing PHP extensions that are listed in the documentation dependencies list. They should have been installed if you followed the documentation.

Worry not, follow the PHP upgrade guide to install the required extensions for PHP 8.1 https://pterodactyl.io/guides/php_upgrade.html

lilac glen
royal bobcatBOT
#

I have found the following for: https://pteropaste.com/4k2w
@lilac glen; You appear to be missing PHP extensions that are listed in the documentation dependencies list. They should have been installed if you followed the documentation.

Worry not, follow the PHP upgrade guide to install the required extensions for PHP 8.1 https://pterodactyl.io/guides/php_upgrade.html

lilac glen
#

I Allready checkt it and have all PHP extensions installed but my php version is right now on 8.3.8, is that the Problem and how i do a downgrade?

scarlet granite
#

apt remove php8.3

#

apt purge php8.3

#

apt autoremove

lilac glen
royal bobcatBOT
#

I have found the following for: https://pteropaste.com/paqm
🇫🇷 🥖 Bienvenue sur Internet, @lilac glen 🥖 🇫🇷

Your database is refusing the Panel's attempts to connect to it. This can be for a number of different reasons so I'll let a human double check, but here are some ideas.

  1. Is your MySQL instance running? systemctl status mysql(hopefully not down the road)
  2. Is the user you're trying to connect with authorized to access the given database from this IP address?
  3. Did you correctly give that user permission to even access that database?
  4. Do you have a Firewall that is blocking connections?
  5. Is your MySQL instance bound to 127.0.0.1 or localhost and you're trying to connect from outside the server?
  6. Does the user have GRANT permissions if you're trying to use them to create a new database for a server?
  7. Have special characters in your password? Make sure DB_PASSWORD in your .env file is enclosed in double quotes

Here is some additional documentation to help you out: https://pterodactyl.io/tutorials/mysql_setup.html