~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to README

  • Committer: Elan Ruusamäe
  • Date: 2008-12-04 19:38:26 UTC
  • mfrom: (644 drizzle)
  • mto: (641.3.10 devel)
  • mto: This revision was merged to the branch mainline in revision 649.
  • Revision ID: glen@haarber.alkohol.ee-20081204193826-xxyhd45ag121pf3z
- pull from trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
The most current information is on the wiki, but are some essential links
2
 
and notes for getting started.
3
 
 
4
 
http://drizzle.org/wiki/
5
 
https://launchpad.net/drizzle
6
 
 
7
 
Compiling:
8
 
# If you got the source from bzr, run:
9
 
./config/autorun.sh
10
 
# The following steps are the same regardless of where you got the source
11
 
./configure --prefix=${HOME}/builds/drizzle && 
12
 
make &&
13
 
make test ||
14
 
echo "FAIL $?"
15
 
 
16
 
More information on compiling can be found at:
17
 
http://drizzle.org/wiki/Compiling
18
 
 
19
 
Running Drizzle:
20
 
# be sure you configured with a prefix before running make install
21
 
make install
22
 
cd ${HOME}/builds/drizzle
23
 
./sbin/drizzled --no-defaults --port=XXXX \
24
 
     --basedir=$PWD --datadir=$PWD/var \
25
 
     >> $PWD/var/drizzle.err 2>&1 &
26
 
 
27
 
See also:
28
 
http://drizzle.org/wiki/Starting_drizzled
29
 
http://drizzle.org/wiki/Contributing_Code
30
 
 
31
 
Cheers!