Changes between Version 11 and Version 12 of InstallationGuidelines/MySQL


Ignore:
Timestamp:
06/06/10 17:15:40 (14 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • InstallationGuidelines/MySQL

    v11 v12  
    2222Database should be created within MySQL before Web2Py can see it to add the relevant tables:
    2323{{{
    24 mysqladmin --user=root -p create sahana
    25 mysql -p
     24mysql -u root -p
     25 CREATE DATABASE sahana;
    2626 GRANT USAGE ON sahana.* TO 'sahana'@'localhost' IDENTIFIED BY 'mypassword';
     27 FLUSH PRIVILEGES;
    2728}}}
    2829