Project

General

Profile

Reconfigure the database » History » Revision 4

Revision 3 (Amber Herold, 10/29/2010 03:18 PM) → Revision 4/17 (Amber Herold, 10/29/2010 03:19 PM)

h1. Reconfigure the database 

 # Drop the databases if they exist 
   
 <pre> 
 mysql -h localhost -u root 

 show databases; 
 </pre> 
 If you see: 
 _projectdb 
 leginondb_ 
 <pre> 
 drop database projectdb; 
 drop database leginondb; 
 </pre> 
 &nbsp; 
 # Create the databases  
 <pre> 
 create database projectdb; 
 create database leginondb; 
 </pre> 
 &nbsp; 
 # Copy config.php to */var/www/html/myamiweb* 
 &nbsp; 
 # Point your web browser to http://localhost/myamiweb/setup 
 ## The database username is *root* 
 ## There is no database password. Leave this field empty. 
 ## Click next without making any changes to the last page of the wizard. 
 ##