Project

General

Profile

Actions

Reconfigure the database » History » Revision 1

Revision 1/17 | Next »
Amber Herold, 10/29/2010 03:18 PM


Reconfigure the database

  1. Drop the databases if they exist
     
    mysql -h localhost -u root
    
    show databases;
    

     
    If you see:
    projectdb
    leginondb
     
    drop database projectdb;
    drop database leginondb;
    

     
  2. Create the databases
    create database projectdb;
    create database leginondb;
    

     
  3. Copy config.php to /var/www/html/myamiweb
     
  4. Point your web browser to http://localhost/myamiweb/setup
    1. The database username is root
    2. There is no database password. Leave this field empty.
    3. Click next without making any changes to the last page of the wizard. ##

Updated by Amber Herold about 14 years ago · 1 revisions