Files
CyberPanel/to-do/fix-phpmyadmin-mariadb-version-on-server.md
master3395 a6417b2bda Install/upgrade and UI updates: monolithic install, SnappyMail, firewall, to-do docs
- Install: monolithic install script, venvsetup_modules and venvsetup_monolithic,
  install_modules (parse_main, menus, actions, etc.), remove legacy email-configs
  and php-configs from repo, add install/snappymail and Rainloop->SnappyMail
  migration script
- CyberPanel: urls.py, cyberpanel.sh, cyberpanel_upgrade_monolithic.sh tweaks
- Firewall: firewall.js and firewall.html updates
- plogical: mailUtilities.py, upgrade.py; upgrade_modules 10_post_tweak.sh
- pluginHolder: deploy-plugins-template.sh
- to-do: docs (git conflicts, HTTP 500 recovery, phpMyAdmin, plugins, SnappyMail
  rename, install/upgrade OS support, security whitelist, etc.)
- upgrade_modules: 02_checks_part1/part2.txt
2026-02-16 00:12:03 +01:00

1.1 KiB

Fix phpMyAdmin Showing 10.11 When 11.8 Is Installed

1. Fix CLI SSL error and see real server version

Run as root on the server:

# Allow mariadb client to connect without SSL (11.x client requires SSL by default)
mkdir -p /etc/my.cnf.d
printf '[client]\nskip-ssl = true\n' > /etc/my.cnf.d/cyberpanel-client.cnf

# Now this should work and show the *actual* server version on 3306
mariadb -e "SELECT @@version;"
  • If it shows 11.8.x: the server is 11.8; phpMyAdmin should show 11.8 after you log out, clear cookies for :2087, then log in again via CyberPanel → Databases → phpMyAdmin.
  • If it still shows 10.11.x: the process on 3306 is still 10.11. Force the 11.8 service to take over:
systemctl stop mariadb
sleep 3
systemctl start mariadb
mariadb -e "SELECT @@version;"

If it still shows 10.11, check:

rpm -q MariaDB-server
ss -tlnp | grep 3306
systemctl status mariadb

2. phpMyAdmin config (already correct on your server)

Your config.inc.php already has host = '127.0.0.1' and port = '3306'. Once the server on 3306 is 11.8 and you log in again via the panel, phpMyAdmin will show 11.8.