Changes between Version 11 and Version 12 of InstallationGuidelines/MySQL
- Timestamp:
- 06/06/10 17:15:40 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
InstallationGuidelines/MySQL
v11 v12 22 22 Database should be created within MySQL before Web2Py can see it to add the relevant tables: 23 23 {{{ 24 mysql admin --user=root -p create sahana25 mysql -p 24 mysql -u root -p 25 CREATE DATABASE sahana; 26 26 GRANT USAGE ON sahana.* TO 'sahana'@'localhost' IDENTIFIED BY 'mypassword'; 27 FLUSH PRIVILEGES; 27 28 }}} 28 29