~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to README

  • Committer: Henrik Ingo
  • Date: 2011-08-29 12:24:27 UTC
  • mto: This revision was merged to the branch mainline in revision 2412.
  • Revision ID: henrik.ingo@avoinelama.fi-20110829122427-bj271mhsl4cq8nv2
Updated README
 - make sure links are up to date
 - add instructions to "apt-get build-dep drizzle" before first build from source

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
A Lightweight SQL Database for Cloud and Web
5
5
 
6
 
http://www.drizzle.org
7
 
#drizzle on FreeNode
8
 
 
9
 
Drizzle is a community-driven open source project that is forked from the popular MySQL database.  
10
 
 
11
 
The Drizzle team has removed non-essential code, re-factored the remaining code and modernized the code base moving to C++.
 
6
WWW: http://www.drizzle.org
 
7
IRC: #drizzle on FreeNode
 
8
Mailing-list: https://launchpad.net/~drizzle-discuss
 
9
 
 
10
 
 
11
Drizzle is a community-driven open source project that is forked from the 
 
12
popular MySQL database.  
 
13
 
 
14
The Drizzle team has removed non-essential code, re-factored the remaining code 
 
15
and modernized the code base moving to C++.
12
16
 
13
17
Charter
14
18
 * A database optimized for Cloud infrastructure and Web applications
22
26
 * Reliable, ACID transactional
23
27
 
24
28
 
25
 
The most current information is on the wiki, but are some essential links
26
 
and notes for getting started.
27
 
 
28
 
http://drizzle.org/wiki/
29
 
https://launchpad.net/drizzle
30
 
 
31
 
Compiling:
 
29
Documentation and support
 
30
-------------------------
 
31
 
 
32
Documentation on building, installing and using Drizzle is available at
 
33
http://docs.drizzle.org/
 
34
 
 
35
If the documentation doesn't answer your questions, please use
 
36
 - IRC
 
37
 - mailing list
 
38
 - https://answers.launchpad.net/drizzle
 
39
...for community support.
 
40
 
 
41
Commercial troubleshooting and 24/7 production support is available from a few
 
42
vendors at http://www.drizzle.org/content/support-and-services
 
43
 
 
44
 
 
45
Compiling from source
 
46
---------------------
 
47
 
 
48
### Installing library dependencies:
 
49
# The easiest and recommended way is to use your package manager to install
 
50
# all build dependencies for the drizzle package. This will always
 
51
# install an up to date list of dependencies.
 
52
# If drizzle is not yet included in your distribution, then please configure
 
53
# your package manager to use these Drizzle repositories:
 
54
#  DEB: http://docs.drizzle.org/installing/ubuntu.html
 
55
#  RPM: http://docs.drizzle.org/installing/redhat.html
 
56
 
 
57
 
 
58
# Then start the build process with executing
 
59
sudo apt-get build-dep drizzle
 
60
# or
 
61
yum-builddep drizzle
 
62
 
 
63
### Compiling:
32
64
# If you got the source from bzr, run:
33
65
./config/autorun.sh
34
66
# The following steps are the same regardless of where you got the source
38
70
echo "FAIL $?"
39
71
 
40
72
More information on compiling can be found at:
41
 
http://drizzle.org/wiki/Compiling
 
73
http://docs.drizzle.org/installing/from_source.html
42
74
 
43
 
Running Drizzle:
 
75
### Running Drizzle:
44
76
# be sure you configured with a prefix before running make install
45
77
make install
46
78
cd ${HOME}/builds/drizzle
47
 
./sbin/drizzled --no-defaults --port=XXXX \
 
79
./sbin/drizzled --no-defaults --mysql-protocol.port=3306 \
48
80
     --basedir=$PWD --datadir=$PWD/var \
49
81
     >> $PWD/var/drizzle.err 2>&1 &
50
82
 
51
 
See also:
52
 
http://drizzle.org/wiki/Starting_drizzled
53
 
http://drizzle.org/wiki/Contributing_Code
 
83
# See also:
 
84
# http://docs.drizzle.org/installing/from_source.html#dependencies
 
85
# http://wiki.drizzle.org/Starting_drizzled
 
86
# http://docs.drizzle.org/contributing/introduction.html
 
87
 
54
88
 
55
89
Cheers!
 
90
  - The Drizzle team
 
 
b'\\ No newline at end of file'