Reconfigure the database » History » Revision 5
Revision 4 (Amber Herold, 10/29/2010 03:19 PM) → Revision 5/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>
# 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.
##