Changes between Version 4 and Version 5 of Installing MediaMosa

Show
Ignore:
Timestamp:
02/28/11 16:58:07 (2 years ago)
Author:
forgacs
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Installing MediaMosa

    v4 v5  
    11= Installing MediaMosa = 
    22 
     3== Unpack you MediaMosa == 
    34 * Unpack it to your web directory (typically /var/www/your-site or /srv/www/your-site). 
     5 
     6== Set up Database == 
     7We advice using [http://mysql.com/ MySQL] v5.1, or use MySQL variant like [http://mariadb.org/ MariaDB]. 
     8 
     9MediaMosa is currently '''untested''' with [http://www.postgresql.org/ PostgreSQL]. 
     10 
     11Use the database '''mediamosa''' example below to create your database 'mediamosa' with user 'mediamosa' before proceeding. 
     12{{{ 
     13# The password entries below needs to be changed. 
     14 
     15# Create the database. 
     16CREATE DATABASE mediamosa DEFAULT CHARSET=utf8; 
     17 
     18# Create localhost access for user 'mediamosa'. 
     19CREATE USER 'mediamosa'@'localhost' IDENTIFIED BY 'mediamosa'; 
     20 
     21# Now grant usage for user 'mediamosa' on the 'mediamosa' database. 
     22GRANT USAGE ON mediamosa.* TO 'mediamosa'@'localhost' IDENTIFIED BY 'mediamosa' WITH MAX_QUERIES_PER_HOUR 0 MAX_CONNECTIONS_PER_HOUR 0 MAX_UPDATES_PER_HOUR 0 MAX_USER_CONNECTIONS 0; 
     23 
     24GRANT ALL ON mediamosa.* TO 'mediamosa'@'localhost'; 
     25}}} 
     26 
     27You may change the 'mediamosa' database prefix and the database user name. 
     28 
     29If you want to migrate your current MediaMosa v1.7 database to the new 2.x version, you have to create or have a database user, which has enough rights to read your current v1.7 databases. 
     30 
     31== Other == 
    432 * Load your new site, chose the Mediamosa profile and follow the instruction. 
    533 * You will have to set your database, your crontab and your Apache settings in this process.