Q. Problem to set new password for koha

Knowgate, modified 6 Months ago. Youngling Posts: 13 Join Date: 7/30/14 Recent Posts
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;