Project

General

Profile

Reconfigure the database » History » Version 1

Amber Herold, 10/29/2010 03:18 PM

1 1 Amber Herold
h1. Reconfigure the database
2
3
# Drop the databases if they exist
4
 
5
<pre>
6
mysql -h localhost -u root
7
8
show databases;
9
</pre>
10
&nbsp;
11
If you see:
12
projectdb
13
leginondb
14
&nbsp;
15
<pre>
16
drop database projectdb;
17
drop database leginondb;
18
</pre>
19
&nbsp;
20
# Create the databases 
21
<pre>
22
create database projectdb;
23
create database leginondb;
24
</pre>
25
&nbsp;
26
# Copy config.php to */var/www/html/myamiweb*
27
&nbsp;
28
# Point your web browser to http://localhost/myamiweb/setup
29
## The database username is *root*
30
## There is no database password. Leave this field empty.
31
## Click next without making any changes to the last page of the wizard.
32
##