Importante:
Cambia il numero di versione per ottenere maggiore sicurezza se hai phpMyAdmin esposto al pubblico o hai bisogno di funzionalità dalle versioni più recenti di phpMyAdmin.
Questo è stato preso da una chat. Alcune cose potrebbero essere imprecise, ma questo ha risolto il problema dell'OP
Installa PHPMyAdmin utilizzando il seguente tutorial:
1.
apt purge phpmyadmin -y
cd /path/to/somefolder
wget https://files.phpmyadmin.net/phpMyAdmin/5.1.0-rc1/phpMyAdmin-5.1.0-rc1-all-languages.zip && unzip phpMyAdmin-5.1.0-rc1-all-languages.zip &&
cd phpMyAdmin-5.1.0-rc1-all-languages
apt install pwgen -y
- Prendere nota dell'output di questo comando, lo chiamerò pw
pwgen -s 32 1
cp config.sample.inc.php config.inc.php
- Modifica config.inc.php con l'editor preferito e incolla il pw in questa riga:
. . .
$cfg['blowfish_secret'] = 'STRINGOFTHIRTYTWORANDOMCHARACTERS'; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */
. . .
vim /etc/apache2/conf-available/phpmyadmin-custom.conf
- Incolla quanto segue al comando precedente:
Alias /phpmyadmin /path/to/that/phpMyAdmin-5.1.0-rc1-all-languages
<Directory "/path/to/that/phpMyAdmin-5.1.0-rc1-all-languages">
Options SymLinksIfOwnerMatch
DirectoryIndex index.php
Require all granted
</Directory>
- Salva il precedente usando
:wq
, Esegui il seguente comando
a2enconf phpmyadmin-custom && systemctl restart apache2 && mysql
- Sostituisci
your_password_here
alla tua password.
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'your_password_here';
systemctl restart mysql
Dovrebbe funzionare ora.
Note aggiuntive:
Per consentirti solo di visualizzare phpMyAdmin, prova:
<Directory "/path/to/that/phpMyAdmin-5.1.0-rc1-all-languages">
Options SymLinksIfOwnerMatch
DirectoryIndex index.php
Require local
# Or change it to
# Require ip 127.0.0.1
# change 127.0.0.1 to your personal computers ip address,
# not to the server ip
# if you want to access phpMyAdmin from a public server, but not allow others to access it
</Directory>