Changes between Version 2 and Version 3 of DatabasePermissions


Ignore:
Timestamp:
2009-08-23T15:03:55+02:00 (15 years ago)
Author:
Morris Swertz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DatabasePermissions

    v2 v3  
    66
    77{{{
    8 #!sql
    98db_driver = com.mysql.jdbc.Driver
    109#your username here
     
    1817Subsequently you need to give proper permissions to this user. Open the mysql client and type:
    1918
     19{{{
     20#!sql
    2021grant all privileges on yourdatabase.* to youruse@yourtomcatserver identified by 'yourpassword';
    2122flush privileges;
     23}}
    2224
    23 For the default user this is:
     25For the default molgenis settings this is:
    2426
     27{{{
     28#!sql
    2529grant all privileges on molgenis.* to molgenis@localhost identified by 'molgenis';
    2630flush privileges;
     31}}}