Changes between Version 4 and Version 5 of adeiSUSE

Show
Ignore:
Author:
csa (IP: 141.52.232.84)
Timestamp:
07/02/10 15:02:40 (14 years ago)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • adeiSUSE

    v4 v5  
    4040 * After making changes to configuration files the mysql and apache servers should be restarted in order to reread configuration. 
    4141 * 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{{{ 
     45CREATE USER 'adei'@'localhost' IDENTIFIED BY 'adei'; 
     46GRANT USAGE ON *.* TO 'adei'@'localhost'; 
     47GRANT ALL PRIVILEGES ON `adei`.* TO 'adei'@'localhost'; 
     48}}} 
    4249 
    4350== Additional Packages ==  
    4754zypper install phpMyAdmin 
    4855}}} 
    49 creating initial administrative account 
     56 creating initial administrative account 
    5057{{{ 
    5158CREATE USER 'admin'@'localhost' IDENTIFIED BY 'pass';