This page was exported from GTUTO [ https://www.gtuto.com ] Export date:Thu Apr 25 13:08:31 2024 / +0000 GMT ___________________________________________________ Title: MYSQL CHANGE PASSWORD --------------------------------------------------- /etc/init.d/mysql stop /usr/sbin/mysqld --skip-grant-tables mysql> FLUSH PRIVILEGES; mysql> SET PASSWORD FOR root@'localhost' = PASSWORD('votre_nouveau_mot_de_passe'); mysql> FLUSH PRIVILEGES; mysql> exit /etc/init.d/mysql start // création user grant all CREATE USER [IF NOT EXISTS] 'monadmin'@'%' IDENTIFIED BY 'monpass'; GRANT ALL ON *.* TO 'monadmin'@'%'; --------------------------------------------------- Images: --------------------------------------------------- --------------------------------------------------- Post date: 2019-06-28 14:12:33 Post date GMT: 2019-06-28 14:12:33 Post modified date: 2021-11-10 19:48:27 Post modified date GMT: 2021-11-10 19:48:27 ____________________________________________________________________________________________ Export of Post and Page as text file has been powered by [ Universal Post Manager ] plugin from www.gconverters.com