Q. Problem to set new password for koha

Knowgate, modificat fa 6 mesos. Youngling Apunts: 13 Data d'incorporació: 30/7/14 Publicacions recents
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;