Q. To set new Password for mysql user

Knowgate, modificat fa 6 mesos. Youngling Apunts: 13 Data d'incorporació: 30/7/14 Publicacions recents
SOLUTION:
  • Goto mysql command prompt:
         # mysql  -u root  -p  koha
         # update mysql.user set password= PASSWORD(‘abc’) where user =’root’;
         # flush privileges;
         # commit;