Q. Problem to set new password for koha

Knowgate, muokattu 6 Kuukautta sitten. Youngling Viestejä: 13 Liittymispäivä: 30.7.14 Viimeisimmät viestit
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;