Q. To set new Password for mysql user

Knowgate, modifié il y a 6 mois. Youngling Publications: 13 Date d'inscription: 30/07/14 Publications récentes
SOLUTION:
  • Goto mysql command prompt:
         # mysql  -u root  -p  koha
         # update mysql.user set password= PASSWORD(‘abc’) where user =’root’;
         # flush privileges;
         # commit;