Summary: | Installation is inoperative even after fresh install | ||
---|---|---|---|
Product: | Koha | Reporter: | C.J.S. Hayward <CJSH> |
Component: | Database | Assignee: | Bugs List <koha-bugs> |
Status: | CLOSED INVALID | QA Contact: | Testopia <testopia> |
Severity: | major | ||
Priority: | P5 - low | CC: | jonathan.druart |
Version: | 17.05 | ||
Hardware: | Macintosh | ||
OS: | Linux | ||
Change sponsored?: | --- | Patch complexity: | --- |
Documentation contact: | Documentation submission: | ||
Text to go in the release notes: | Version(s) released in: | ||
Circulation function: |
Description
C.J.S. Hayward
2017-06-23 23:35:42 UTC
Please bring this up on the mailing list - many more people are reading there. There is probably only a handful reading the incoming bug reports. From a mailing list response, after things are working: -- Tim Young <Tim.Young@lightsys.org> 8:56 PM (17 hours ago) to koha Hi, This sounds like it is because of an odd "feature" of mysql which is not always present. This page: https://askubuntu.com/questions/766334/cant-login-as-mysql-user-root-from-normal-user-account-in-ubuntu-16-04 with the answer from "Todor", explains that mysql will change over to using an auth_socket "plugin." So, instead of using password authentication, part of the permission is blocked by unix file-level permissions. The simple solution: sudo mysql -u root update mysql.user set plugin = 'mysql_native_password' where User='root'; FLUSH PRIVILEGES; Then you should be able to connect up as root even if you are not a root user. After that, you should be able to run the script. - Tim |