Fòrums de discussió Fòrums de discussió

Frequently Asked Questions in KOHA

Q. Problem to set new password for koha

Fils de discussió [ Anterior | Següent ]
Q. Problem to set new password for koha
Resposta
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;