GTUTO
https://www.gtuto.com/mysql-change-password/
Export date: Thu Apr 18 9:18:37 2024 / +0000 GMT

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'@'%';
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 date: Thu Apr 18 9:18:37 2024 / +0000 GMT
This page was exported from GTUTO [ https://www.gtuto.com ]
Export of Post and Page has been powered by [ Universal Post Manager ] plugin from www.ProfProjects.com