Changes between Version 4 and Version 5 of adeiSUSE
- Timestamp:
- 07/02/10 15:02:40 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
adeiSUSE
v4 v5 40 40 * After making changes to configuration files the mysql and apache servers should be restarted in order to reread configuration. 41 41 * Finally, configure ''Apache'' and ''MySQL 5'' services to run during the start-up. Create MySQL account with full permissions to manage the ''adei'' database. Configure this account and the database in ''config.actual.php'' in the root of ADEI installation. 42 43 Creating MySQL account: 44 {{{ 45 CREATE USER 'adei'@'localhost' IDENTIFIED BY 'adei'; 46 GRANT USAGE ON *.* TO 'adei'@'localhost'; 47 GRANT ALL PRIVILEGES ON `adei`.* TO 'adei'@'localhost'; 48 }}} 42 49 43 50 == Additional Packages == 47 54 zypper install phpMyAdmin 48 55 }}} 49 creating initial administrative account56 creating initial administrative account 50 57 {{{ 51 58 CREATE USER 'admin'@'localhost' IDENTIFIED BY 'pass';