Q. Problem to set new password for koha

Knowgate, modifié il y a 6 mois. Youngling Publications: 13 Date d'inscription: 30/07/14 Publications récentes
SOLUTION:
  • Go to terminal
          Type the following commands:
              # mysql -u root -p
              # enter your mysql password
              # use koha
              # update mysql.user set password=PASSWORD('abc') where user='kohaadmin';
              # flush privileges;
              # commit;