Changes between Version 21 and Version 22 of install


Ignore:
Timestamp:
2010-07-26T17:37:17Z (14 years ago)
Author:
Pan Luo
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • install

    v21 v22  
    7474
    7575<Directory "/var/www/html">
    76         Options Indexes FollowSymLinks MultiViews
     76        Options Indexes FollowSymLinks
    7777        AllowOverride All
    7878        Order allow,deny
    79         allow from all
     79        Allow from all
    8080</Directory>
     81}}}
     82
     83=== MySQL Configuration ===
     84 * Create a database for your iPeer instance.
     85{{{
     86#!sql
     87CREATE DATABASE ipeer;
     88}}}
     89* Create a user and grant permissions
     90{{{
     91#!sql
     92CREATE USER 'ipeer'@'localhost' IDENTIFIED BY 'PASSWORD';
     93GRANT ALL PRIVILEGES ON ipeer.* TO 'ipeer'@'localhost';
     94FLUSH PRIVILEGES;
    8195}}}
    8296