
Zitat von
jan.steven
The following error must be resolved before you can continue the installation process:
We were unable to lock a test table on your MySQL database server. We tried locking a table with the command LOCK TABLES drupal_install_test WRITE and MySQL reported the following error: Access denied for user: 'xxx@localhost' to database 'drupal'.
Passwort für die DB stimmt 100% habs extra nochmal geprüft.
lG Jan
Der User 'drupal' muss alle Rechte auf die Datenbank besitzen, damit er diese öffnen, lesen, schliessen und beschreiben kann. Du hast offensichtlich nur Rechte zum lesen gegeben. Hast du den User in der DB überhaupt angelegt?
Ich hab dieses CMS System noch nicht genutzt, weiss nicht ob die Installation automatisiert erfolgt per Skript oder ob alles händisch machen musst.
Das sieht so aus:
Code:
grant all privileges on $DBNAME.* to $USER identified by '$PW';
flush privileges;
Wichtig ist, der Punkt (.) hinter $DBNAME mit übernehmen.