Ich hatte das gleiche Problem bei der Verwendung von mariaDB mit phpmyadmin (Ubuntu 16.04LTS).
Voraussetzungen:
1) Installieren Sie MariaDB
sudo apt-get -y install mariadb-server mariadb-client
sudo mysql_secure_installation (answer to some interactive questions):
Enter current password for root (enter for none): <enter>
Set root password: n
Remove anonymous users: n
Disallow root login remotely: n
Remove test database and access to it: n
Reload privilege tables now: Y
Wenn Sie deinstallieren möchten mariaDB
:
sudo apt-get purge mysql-server mysql-client mysql-common mysql-server-core-5.5 mysql-client-core-5.5
sudo rm -rf /etc/mysql /var/lib/mysql
sudo apt-get autoremove
sudo apt-get autoclean
2) Installieren Sie phpmyadmin
sudo apt-get -y install phpmyadmin (and answer some interactive questions)
Configuring phpmyadmin:
Web server to reconfigure automatically: apache2
Configure database for phpmyadmin with dbconfig-common: Yes
MySQL application password for phpmyadmin: <blank>
3) Erstellen Sie in apache2 einen symbolischen Link zu phpmyadmin
sudo ln -s /etc/phpmyadmin/apache.conf /etc/apache2/conf-available/phpmyadmin.conf
sudo a2enconf phpmyadmin.conf
sudo service apache2 restart
Ok, jetzt, wenn Sie Raels Anweisungen folgen, können Sie sich einloggen phpmyadmin
, aber zumindest für mich konnte ich keine neuen Datenbanken erstellen, da eine rote Meldung auftauchte: No privileges
(oder eine ähnliche Meldung)
Die Lösung bestand darin, phpmyadmin neu zu konfigurieren und einige interaktive Fragen zu beantworten.
sudo dpkg-reconfigure phpmyadmin
<Ok>
Reinstall database for phpmyadmin: <Yes>
Connection method for MySQL database server for phpmyadmin: TCP/IP
Host name of the MySQL database server for phpmyadmin: localhost
Port number for the MySQL service: 3306
MySQL database name for phpmyadmin: phpmyadmin
<Ok>
MySQL username for phpmyadmin: root
MySQL application password for phpmyadmin: pass # OR ANY PASSWORD YOU WANT
Password confirmation: pass
Name of the database's administrative user: root
Web server to reconfigure automatically: apache2
An error occurred while installing the database: ignore
Wenn Sie nun versuchen, eine Verbindung mit phpmyadmin ( localhost/phpmyadmin
) herzustellen, verwenden Sie
username: root
password: pass
Sie können Datenbanken erstellen.