IBS Helpdesk

Professionelle IT-Lösungen

Entries Tagged ‘password’

MySQL root Passwort vergessen

Kann jedem mal passieren… Hier eine Anleitung für Windows-Server:
1. mysql-Dienst stoppen
service mysql stop
2. Wenn MySQL down ist, MySQL wie folgt starten
mysqld-nt –skip-grant-tables
ACHTUNG: Hierbei werden die Zugriffsrechte umgangen, so dass ALLE Benutzer VOLLEN Zugriff auf ALLE Tabellen erhalten!
3. Jetzt kann man sich als root ohne Passwort einloggen
mysql -uroot mysql
4. Im MySQL command line prompt folgende Kommandos [...]

How to Enable and Disable Ubuntu Root Password

Ubuntu is one of the few Linux distributions out there that will not enable the root account. If you want to do something with root permission on the console you have to type sudo before the command.
sudo means superuser do. sudo will prompt for “Password:”. Please specify user password.
As you have noticed during the Ubuntu [...]