blob: f7a60cfc4ba73e0ade9ef1c52c492fbcaec40200 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
*****************************************************************
Create a database for SiT
Login to mysql using:
#> mysql -u root -p
mysql> create database sit;
mysql> create user 'sit'@'localhost' identified by 'yourpassword'
mysql> grant all privileges on sit.* to 'sit'@'localhost'
*****************************************************************
You will also need to configure Apache. Consider adding the following
to your httpd.conf:
Alias /sit "%%WWWDIR%%"
<Directory "%%WWWDIR%%">
AllowOverride all
Allow from all
</Directory>
Then restart Apache: 'apachectl graceful'
Please visit 'http://<yourhost>/sit/' in a
web-browser and follow the configuration instructions.
go to http://sitracker/wiki for more help
*****************************************************************
|