Mailinglisten-Archive |
Vielleicht verwendest Du einfach das falsche Paßwort? Dann hilft Dir dies weiter: http://www.mysql.com/Manual_chapter/manual_Problems.html#Resetting_permissio ns Du bist sicher, daß Du berechtigt bist? Kurzfassung: shell> kill `cat /pfad/zu/mysql-daten/hostname.pid` shell> /pfad/zu/mysql-verzeichnis/bin/mysqld --skip-grant-tables shell> mysql mysql> use mysql mysql> UPDATE user SET Password=PASSWORD('top_secret') mysql> WHERE user='root'; mysql> exit shell> kill `cat /mysql-daten/hostname.pid` shell> /pfad/zu/mysql-verzeichnis/bin/safe_mysql & fertisch 19.9 How to reset a forgotten password. If you have forgotten the root user password for MySQL, you can restore it with the following procedure. 1.Take down the mysqld server by sending a kill (not kill -9) to the mysqld server. The pid is stored in a .pid file which is normally in the MySQL database directory: kill `cat /mysql-data-directory/hostname.pid` You must be either the UNIX root user or the same user the server runs as to do this. 2.Restart mysqld with the --skip-grant-tables option. 3.Connect to the mysqld server with mysql -h hostname mysql and change the password with a GRANT command. See section 7.26 GRANT and REVOKE syntax. You can also do this with mysqladmin -h hostname -u user password 'new password' 4.Load the privilege tables with: mysqladmin -h hostname flush-privileges or with the SQL command FLUSH PRIVILEGES. > -----Original Message----- > From: Michael Porath [mailto:mporath_(at)_swissonline.ch] > Sent: Friday, March 31, 2000 12:33 AM > To: mysql-de_(at)_lists.4t2.com > Subject: MySQL-Installationsproblem > > > Hallo > > Ich bringe leider MySQL auf meinem Linux-Server nicht zum Laufen. Die > Installation ist rund gelaufen, aber ich habe ein > Passwort-Problem, das so > tief drin sitzt, dass ich mich nicht einmal als root > einloggen kann, um die > Berechtigungen in der mysql-DB zu ändern. > > wenn ich mich mit > mysql -u root -p > einlogge und das Passwort eingebe, erscheint folgene Mitteilung: > Access denied for user 'root_(at)_localhost' (Using password: YES) > > Kann mir einer von euch helfen? > > Thanxx > Michael > > --- > *** Abmelden von dieser Mailingliste funktioniert per E-Mail > *** an mysql-de-request_(at)_lists.4t2.com mit Betreff/Subject: unsubscribe > --- *** Abmelden von dieser Mailingliste funktioniert per E-Mail *** an mysql-de-request_(at)_lists.4t2.com mit Betreff/Subject: unsubscribe
php::bar PHP Wiki - Listenarchive