editor
621
modifications
m (<syntaxhighlight lang="mysql" line="line">) |
|||
(Une version intermédiaire par un autre utilisateur non affichée) | |||
Ligne 16 : | Ligne 16 : | ||
Dans une autre console, accédez à MySql (sans mot de passe...) | Dans une autre console, accédez à MySql (sans mot de passe...) | ||
<syntaxhighlight lang="mysql" line="line"> | |||
# mysql -u root | |||
Welcome to the MySQL monitor. Commands end with ; or \g. | |||
Your MySQL connection id is 1 | |||
Server version: 5.1.49-3 (Debian) | |||
Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved. | |||
This software comes with ABSOLUTELY NO WARRANTY. This is free software, | |||
and you are welcome to modify and redistribute it under the GPL v2 license | |||
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. | |||
mysql> FLUSH PRIVILEGES; | |||
Query OK, 0 rows affected (0.00 sec) | |||
mysql> SET PASSWORD FOR root@'localhost' = PASSWORD('votre_nouveau_mot_de_passe'); | |||
Query OK, 0 rows affected (0.00 sec) | |||
mysql> FLUSH PRIVILEGES; | |||
Query OK, 0 rows affected (0.00 sec) | |||
mysql> exit | |||
Bye | |||
</syntaxhighlight> | |||
Redémarrez MySql en mode "normal": | Redémarrez MySql en mode "normal": | ||
Ligne 45 : | Ligne 46 : | ||
Faites un test avec le nouveau mot de passe: | Faites un test avec le nouveau mot de passe: | ||
<syntaxhighlight lang="mysql" line="line"> | |||
# mysql -u root -p | |||
Enter password: | |||
Welcome to the MySQL monitor. Commands end with ; or \g. | |||
Your MySQL connection id is 88 | |||
Server version: 5.1.49-3 (Debian) | |||
Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved. | |||
This software comes with ABSOLUTELY NO WARRANTY. This is free software, | |||
and you are welcome to modify and redistribute it under the GPL v2 license | |||
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. | |||
mysql> exit | |||
Bye | |||
</syntaxhighlight> | |||
Voilà! | Voilà! | ||
Ligne 69 : | Ligne 72 : | ||
[[Utilisateur:Lol|Lol]] 22 janvier 2012 à 06:38 (CET) | [[Utilisateur:Lol|Lol]] 22 janvier 2012 à 06:38 (CET) | ||
[[Catégorie: | [[Catégorie:Trucs_et_Astuces]] |