Hallo,
Falls du das MySQL root Passwort meinst:
1. MySQL Stoppen
|
Quellcode
|
1
|
/etc/init.d/mysql stop
|
2. MySQL mit "--skip-grant-tables" starten
|
Quellcode
|
1
|
mysqld --user=mysql --skip-networking --skip-grant-tables
|
3. Neues root Passwort setzen
|
Quellcode
|
1
|
su - mysql -c "mysqladmin --user root password 'NEUESPASSWORT'"
|
4. MySQL neustarten
|
Quellcode
|
1
|
/etc/init.d/mysql restart
|
Nicht getestet, aber müsste eigentlich so funktionieren