Actions
Reconfigure the database » History » Revision 1
Revision 1/17
| Next »
Amber Herold, 10/29/2010 03:18 PM
Reconfigure the database¶
- Drop the databases if they exist
mysql -h localhost -u root show databases;
If you see:
projectdb
leginondb
drop database projectdb; drop database leginondb;
- Create the databases
create database projectdb; create database leginondb;
- 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. ##
Updated by Amber Herold about 14 years ago · 1 revisions