wiki:DatabasePermissions

Version 1 (modified by Morris Swertz, 15 years ago) (diff)

--

To use MOLGENIS you need proper permissions

MySQL

In the MolgenisProperties? file you need to set database parameters

Error: Failed to load processor CodeExample
No macro or processor named 'CodeExample' found

Subsequently you need to give proper permissions to this user. Open the mysql client and type:

grant all privileges on yourdatabase.* to youruse@yourtomcatserver identified by 'yourpassword'; flush privileges;

For the default user this is:

grant all privileges on molgenis.* to molgenis@localhost identified by 'molgenis'; flush privileges;