Q. Problem to set new password for koha

Knowgate,修改在6 个月前。 Youngling 帖子: 13 加入日期: 14/7/30 最近的帖子
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;