Edgewall Software

Changes between Version 46 and Version 47 of MySqlDb


Ignore:
Timestamp:
Nov 23, 2009, 9:12:50 AM (14 years ago)
Author:
chris+tracwiki@…
Comment:

Fix MySQL grant command and connect string to ones that work

Legend:

Unmodified
Added
Removed
Modified
  • MySqlDb

    v46 v47  
    5252Usually, you also want to create a user and give this user access to the database created above:
    5353{{{
    54 CREATE USER tracuser IDENTIFIED BY 'password';
    55 GRANT ALL ON trac.* TO tracuser;
     54GRANT ALL ON trac.* TO tracuser@localhost IDENTIFIED BY 'password';
    5655}}}
     56
    5757The connection string will then be:
    5858{{{
    59 mysql://tracuser:password@localhost/trac:3389
     59mysql://tracuser:password@localhost/trac
    6060}}}
    6161