From 8f9f32cd91465a92f180520a5e40b9d51c327ee2 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Sat, 20 May 2017 15:52:02 +0200 Subject: [PATCH 1/2] Update instructions to reset admin password --- admin_fr.md | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/admin_fr.md b/admin_fr.md index 06ef8237..4214b2ce 100644 --- a/admin_fr.md +++ b/admin_fr.md @@ -13,29 +13,33 @@ L’interface admin est accessible depuis votre instance YunoHost à l’adresse ### Réinitialiser le mot de passe administrateur -
Cette méthode ne fonctionnera pas avec Yunohost 2.4 / Debian Jessie
+#### Sous Yunohost 2.5 -Pour réinitialiser le mot de passe administrater de YunoHost (l’utilisateur root est nécessaire) +Le script pour réinitialiser le mot de passe adminstrateur n'est pas directement disponible, mais peut être téléchargé puis executé (à partir de l'utilisateur root) : -Dans le fichier `/etc/slapd/slapd.conf` ajouter la ligne suivante : ```bash -rootdn "cn=admin,dc=yunohost,dc=org" -rootpw {SSHA}O4kkm2OkgO2DPrrnYXXXXXXXXXXXXXXX +$ wget https://raw.githubusercontent.com/YunoHost/yunohost/testing/sbin/yunohost-reset-ldap-password +$ chmod +x yunohost-reset-ldap-password +$ ./yunohost-reset-ldap-password ``` -avec le hash la dernière ligne de la commande +#### À partir de Yunohost 2.6 + +Pour réinitialiser le mot de passe administrateur de YunoHost (à partir de l'utilisateur root) : + ```bash -slappasswd -h {SSHA} -# Un mot de passe vous sera demandé, vous retournant un hash comme résultat +$ yunohost-reset-ldap-password ``` -Une fois les lignes ajoutées (il faut probablement rédémarrer le service LDAP), vous devriez être en mesure de vous connecter avec le mot de passse temporaire. Changer le via l’interface. Retirer les lignes ajoutées dans le fichier `slapd.conf`. +Un mot de passe temporaire sera créé, que vous pouvez utiliser pour ensuite définir un nouveau mot de passe. + + ### Comment déplacer le dossier d’une application Pour changer le dossier contenant une application, seules quelques commandes sont nécessaires : déplacer le contenu créer un lien symbolique et définir les droits d’accès. -Exemple avec WordPress : +Exemple avec WordPress : ```bash # Deplacement du wordpress vers un autre support $ sudo mv /var/www/wordpress /mon/dossier/cible From 4224d789b7dbf1d8891da6ec48f877d9f3fb91a5 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Sat, 20 May 2017 16:24:06 +0200 Subject: [PATCH 2/2] Update instructions to reset admin password (en) --- admin.md | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/admin.md b/admin.md index 65128f5f..6793e8c8 100644 --- a/admin.md +++ b/admin.md @@ -14,23 +14,25 @@ You can access your administrator web interface at this address: https://example ### Reset admin password -
Deprecated method, will not work on Yunohost 2.4 / Debian Jessie
+#### On Yunohost 2.5 -To reset YunoHost admin password (Need a root user available) +The script to reset the admin password is not directly available, but can be downloaded and executed (as root) : -add the following lines to `/etc/slapd/slapd.conf`: ```bash -rootdn "cn=admin,dc=yunohost,dc=org" -rootpw {SSHA}O4kkm2OkgO2DPrrnYXXXXXXXXXXXXXXX +$ wget https://raw.githubusercontent.com/YunoHost/yunohost/testing/sbin/yunohost-reset-ldap-password +$ chmod +x yunohost-reset-ldap-password +$ ./yunohost-reset-ldap-password ``` -where the hash in the last line comes from (or at least that's my understanding) +#### From Yunohost 2.6 + +To reset the admin password (as root) : + ```bash -slappasswd -h {SSHA} -# A password will be ask, and you'll get the corresponding hash +$ yunohost-reset-ldap-password ``` -Once the lines are added, [here you might need to restart the ldap service ?], you should be able to connect to the admin interface, rechange the password properly, remove the lines you added in slapd.conf, and that should be all. +A temporary password will be created, which you can use to define the new password. ### How to move application folder