Setup MySQL database
Mysql database Download and install mysql-5.1.65-winx64.msi from http://dev.mysql.com/downloads/mysql/5.1.html Mysql workbench (optional) Download and install mysql-workbench-gpl-5.2.43-win32 from http://dev.mysql.com/downloads/workbench/1.0.html You also need to install the dependents of workbench
Installation instructions for mysql is explained at http://dev.mysql.com/doc/refman/5.5/en/installing.html NOTE: Make sure your mysql installation is case insensitive by adding the below line into my.cnf file lower_case_table_names= 1
Setup mycp schemaOne the database is up and running, open up a mysql shell and run the mycloudportal related sql files to create the schema and populate it with initial data.
create the mycp database in MySQL using its shell.
read through the mycp.ddl.sql file and follow the instructions there. you will need to import the latest mysqldump file and then execute the scripts in .dml file
then execute the sql commands in " mycp.dml.sql" file found in root of the mycloudportal sources and commit. |
Setup - Windows >