Reconfigure the database » History » Revision 2
Revision 1 (Amber Herold, 10/29/2010 03:18 PM) → Revision 2/17 (Amber Herold, 10/29/2010 03:18 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> # Create the databases <pre> create database projectdb; create database leginondb; </pre> # Copy config.php to */var/www/html/myamiweb* # 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. ##