Changes between Version 2 and Version 3 of DatabasePermissions
- Timestamp:
- 2009-08-23T15:03:55+02:00 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DatabasePermissions
v2 v3 6 6 7 7 {{{ 8 #!sql9 8 db_driver = com.mysql.jdbc.Driver 10 9 #your username here … … 18 17 Subsequently you need to give proper permissions to this user. Open the mysql client and type: 19 18 19 {{{ 20 #!sql 20 21 grant all privileges on yourdatabase.* to youruse@yourtomcatserver identified by 'yourpassword'; 21 22 flush privileges; 23 }} 22 24 23 For the default userthis is:25 For the default molgenis settings this is: 24 26 27 {{{ 28 #!sql 25 29 grant all privileges on molgenis.* to molgenis@localhost identified by 'molgenis'; 26 30 flush privileges; 31 }}}