habe unter Xen, ein Debian-Lenny installiert. Das Debian kommt von dem jailtime.org Projekt. Die Installation verlief soweit auch problemlos, jedoch ist in der DB kein Root-User angelegt worden und ich kann diesen auch nicht nachträglich hinzufügen. :-/
Code: Alles auswählen
dpkg -l |grep mysql
ii libdbd-mysql-perl 4.007-1 A Perl5 database interface to the MySQL data
ii libmysqlclient15off 5.0.51a-24+lenny2 MySQL database client library
ii mysql-client-5.0 5.0.51a-24+lenny2 MySQL database client binaries
ii mysql-common 5.0.51a-24+lenny2 MySQL database common files
ii mysql-server 5.0.51a-24+lenny2 MySQL database server (metapackage depending
ii mysql-server-5.0 5.0.51a-24+lenny2 MySQL database server binaries
Code: Alles auswählen
mysql> select user from user;
+------------------+
| user |
+------------------+
| debian-sys-maint |
+------------------+
1 row in set (0.00 sec)
Code: Alles auswählen
mysql> GRANT ALL PRIVILEGES on *.* to 'root'@'localhost' IDENTIFIED BY "passwort";
ERROR 1290 (HY000): The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement
mysql>
Hat jemand vielleicht eine Lösung?
Danke