I am trying to use a mysql DB that is hosted on external server, not a docker container with default config. I've populated the matecat db, created a new user on there and modified the config.ini values (DB_SERVER, DB_DATABASE, DB_USER, DB_PASS) with new values, that are not admin:admn. before building the containers.
Problem is, when trying to upload a project, its stuck on analyzing, response is "Not Authorized", but the project is stored in the database projects table, status on each project is NOT_READY_FOR_ANALYSIS.
If i use the default docker-compose mysql image instead, whole project analysis flow works with no problems.
Am i missing a specific additional user role that needs to be created in mysql?
NOTE: my current user does not have all permissions granted, since AWS does not allow it, so im using these instead:
GRANT SELECT, INSERT, UPDATE,DELETE, EXECUTE, SHOW VIEW ON matecat.* TO 'adminuser''%';
Thank you for your help!
I am trying to use a mysql DB that is hosted on external server, not a docker container with default config. I've populated the matecat db, created a new user on there and modified the config.ini values (DB_SERVER, DB_DATABASE, DB_USER, DB_PASS) with new values, that are not admin:admn. before building the containers.
Problem is, when trying to upload a project, its stuck on analyzing, response is "Not Authorized", but the project is stored in the database projects table, status on each project is NOT_READY_FOR_ANALYSIS.
If i use the default docker-compose mysql image instead, whole project analysis flow works with no problems.
Am i missing a specific additional user role that needs to be created in mysql?
NOTE: my current user does not have all permissions granted, since AWS does not allow it, so im using these instead:
GRANT SELECT, INSERT, UPDATE,DELETE, EXECUTE, SHOW VIEW ON matecat.* TO 'adminuser''%';
Thank you for your help!