Archive for the ‘MySQL’ Category

Fehlermeldung im PhpMyAdmin 3.4.9

Posted: 9th Februar 2012 by admin in MySQL, Serveradministration

Fehler im phpMyAdmin: Der phpMyAdmin-Konfigurationsspeicher ist nicht vollständig konfiguriert, einige erweiterte Funktionen wurden deaktiviert. Klicken Sie hier, um herauszufinden warum. Lösung: Öffnen der Datei main.php im PhpMyAdmin-Verzeichnis. Dort Zeile 298. if ($server > 0) { ändern in if ($server > 0 AND 1 == 2) { Danach ist der Fehler weg.

MySQL Replikation neu starten

Posted: 12th Dezember 2011 by admin in MySQL

Mysql Replikation neu starten ### Master ### mysql> show master status; +—————-+———-+————–+——————+ | File | Position | Binlog_Do_DB | Binlog_Ignore_DB | +—————-+———-+————–+——————+ | db0-bin.000123 | 123456789| | | +—————-+———-+————–+——————+ 1 row in set (0.00 sec) ### Slave ### mysql> slave stop; Query OK, 0 rows affected, 1 warning (0.00 sec) mysql> CHANGE MASTER TO master_host= [...]

Grant by MySQL

Posted: 9th Dezember 2011 by admin in MySQL

grant all on *.* to ‘root’@’1.1.1.%’ identified by ‘password’; grant select on apache.* to ‘apache’@’localhost’ identified by ‘password’;