From d28993af5f1a10af1d1d72c23b2fe69710185900 Mon Sep 17 00:00:00 2001 From: makayabou Date: Tue, 17 Nov 2020 17:50:45 +0100 Subject: [PATCH] no lists? --- docs/cours/presentation-garage/formation/pnpro-devops.md | 2 +- docs/divers/server/mysql.md | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/cours/presentation-garage/formation/pnpro-devops.md b/docs/cours/presentation-garage/formation/pnpro-devops.md index 86dc7f4b..cfb42560 100644 --- a/docs/cours/presentation-garage/formation/pnpro-devops.md +++ b/docs/cours/presentation-garage/formation/pnpro-devops.md @@ -4,8 +4,8 @@ ### Nomenclature -|=======|=========================| | Titre | Diplôme d'établissement PASSE Numérique Pro parcours Maintenance et Sécurité Informatique | +|=======|=========================| | Code | DIE6302A | | NSF | Assistance Informatique, Maintenance de Logiciels et Réseaux (326r) | | ROME | Gestionnaire du Parc Informatique (M1810) | diff --git a/docs/divers/server/mysql.md b/docs/divers/server/mysql.md index a2d513f2..5d9b0ccb 100644 --- a/docs/divers/server/mysql.md +++ b/docs/divers/server/mysql.md @@ -33,7 +33,8 @@ Changing a user's associated host (example from host % to host loclahost): UPDATE mysql.user SET Host='localhost' WHERE Host='%' AND User='user' -See also, on users management: +See also, on users management: + - [https://support.rackspace.com/how-to/mysql-resetting-a-lost-mysql-root-password/](https://support.rackspace.com/how-to/mysql-resetting-a-lost-mysql-root-password/) - [https://lean.fr/reinitialiser-le-mot-de-passe-root-mysql-sans-mot-de-passe-42495.html](https://lean.fr/reinitialiser-le-mot-de-passe-root-mysql-sans-mot-de-passe-42495.html) - [MySQL sur Ubuntu 18.04](https://www.digitalocean.com/community/tutorials/comment-installer-mysql-sur-ubuntu-18-04-fr) @@ -61,7 +62,7 @@ See also, on users management: MYSQL_PWD="password" mysqldump -u root database > database.sql #secure MYSQL_PWD="password" mysqldump -u root --all-databases > database.sql -See also, for more advanced features): +See also, for more advanced features): - [Utilisation de myssqldump](https://www.geek-directeur-technique.com/2017/07/17/utilisation-de-mysqldump) - [Guide de sauvegarde et restauration MySQL](https://www.memoinfo.fr/tutoriels-linux/guide-sauvegarde-restauration-mysql/)