Keskustelualueet Keskustelualueet

Frequently Asked Questions in KOHA

Q. Problem to set new password for koha

Aiheet [ Edellinen | Seuraava ]
Q. Problem to set new password for koha
Vastaus
28.7.2015 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;