I dumped phpmyadmin when i realized what a resource hog it was. Simple php file to do the same thing.
Self-hosting
Hosting your own services. Preferably at home and on low-power or shared hardware.
Also check out:
Thanks, but I really dislike adminer's UI, although granted I've been using a fairly old version.
I managed to figure out how to bypass the cert verification in dbconfig-mysql (named on the tin as dbconfig-common) and got my appliance set up!
-
apt install dbconfig-mysqlbefore installing the PhpMyAdmin package -
In
/usr/share/dbconfig-common/internal/dbc-mysql, in both sections wheretemporary my.cnfis defined, setssl-verify-server-cert = offright below theport =line. -
to install PhpMyAdmin, run
DEBIAN_PRIORITY=low apt install phpmyadminand follow the prompts -
In
/etc/phpmyadmin/config.inc.phpadd the following line directly under$cfg['Servers'][$i]['host'] = $dbserver;:$cfg['Servers'][$i]['ssl'] = true; $cfg['Servers'][$i]['ssl_verify'] = false;