Forum Forum

Frequently Asked Questions in KOHA

Q. Problem to set new password for koha

Sujets [ Précédent | Suivant ]
Q. Problem to set new password for koha
Réponse
28/07/15 15:56
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;