Zuerst erstellen wir die RPMForge-Softwarebibliothek unseres CentOS-Systems zu phpMyAdmin, die nicht die offizielle CentOS 6.0-Bibliothek ist, und importieren den GPG-Schlüssel von rpmforge:
rpm –import http://dag.wieers.com/rpm/packages/RPM-GPG-KEY.dag.txt
x86_64-Systeminstallationsbefehl:
yum install http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.2-2.el6.rf.x86_64.rpm
i386-Systeminstallationsbefehl:
yum install http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.2-2.el6.rf.i686.rpm
Jetzt können Sie phpMyAdmin wie folgt installieren:
yum install phpmyadmin
Jetzt konfigurieren wir phpMyAdmin. Ändern Sie die Apache-Konfiguration so, dass phpMyAdmin eine Verbindung herstellt, kommentieren Sie die Zeilen 3-8 aus:
vi /etc/httpd/conf.d/phpmyadmin.conf # # Web application to manage MySQL# # # Order Deny,Allow # Deny from all # Allow from 127.0.0.1 # Alias /phpmyadmin /usr/share/phpmyadmin Alias /phpMyAdmin /usr/share/phpmyadmin Alias /mysqladmin /usr/share/phpmyadmin
Als nächstes ändern wir die Authentifizierung in phpMyAdmin und ändern „Cookie“ in „HTTP“:
vi /usr/share/phpmyadmin/config.inc.php /* Authentication type */ $cfg['Servers'][$i]['auth_type'] = 'http';
Apache neu starten:
/etc/init.d/httpd restart
Danach können Sie die Datenbank verwalten, indem Sie phpMyAdmin http://42.168.0.100/phpmyadmin/ besuchen.