I have a running micro integrator 4.2.0 instance connected to RDBMS user store MySQL database. Calling an API deployed under the carbon applications of this micro integrator is working fine using the admin admin user. However, when i open the dashboard / users screen, it shows the following message: User management is not supported with the file-based user store. Please plug in a user store for the correct functionality
Is any configuration at the dashboard level needed? the documentation only suggests to add the data source and user store to the micro integrator configuration. Please help.
Seems like you have missed disabling the file-based user store in the Micro Integrator which is used by default for authentication and authorization for the management API.
You need to add the following config to the deployment.toml
of the Micro Integrator.
[internal_apis.file_user_store]
enable = false
Refer the following doc for more information and the configuration steps,