Merge lp:~hingo/drizzle/drizzle-README-update into lp:~drizzle-trunk/drizzle/development

Proposed by Henrik Ingo
Status: Merged
Approved by: Brian Aker
Approved revision: 2371
Merged at revision: 2412
Proposed branch: lp:~hingo/drizzle/drizzle-README-update
Merge into: lp:~drizzle-trunk/drizzle/development
Diff against target: 104 lines (+54/-19)
1 file modified
README (+54/-19)
To merge this branch: bzr merge lp:~hingo/drizzle/drizzle-README-update
Reviewer Review Type Date Requested Status
Brian Aker Approve
Review via email: mp+73225@code.launchpad.net

Description of the change

Updated README with current links + instructions to do apt-get build-dep drizzle or yum-builddep drizzle before doing your first source build.

To post a comment you must log in.
Revision history for this message
Brian Aker (brianaker) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'README'
--- README 2011-02-11 05:16:33 +0000
+++ README 2011-08-29 12:34:27 +0000
@@ -3,12 +3,16 @@
33
4A Lightweight SQL Database for Cloud and Web4A Lightweight SQL Database for Cloud and Web
55
6http://www.drizzle.org6WWW: http://www.drizzle.org
7#drizzle on FreeNode7IRC: #drizzle on FreeNode
88Mailing-list: https://launchpad.net/~drizzle-discuss
9Drizzle is a community-driven open source project that is forked from the popular MySQL database. 9
1010
11The Drizzle team has removed non-essential code, re-factored the remaining code and modernized the code base moving to C++.11Drizzle is a community-driven open source project that is forked from the
12popular MySQL database.
13
14The Drizzle team has removed non-essential code, re-factored the remaining code
15and modernized the code base moving to C++.
1216
13Charter17Charter
14 * A database optimized for Cloud infrastructure and Web applications18 * A database optimized for Cloud infrastructure and Web applications
@@ -22,13 +26,41 @@
22 * Reliable, ACID transactional26 * Reliable, ACID transactional
2327
2428
25The most current information is on the wiki, but are some essential links29Documentation and support
26and notes for getting started.30-------------------------
2731
28http://drizzle.org/wiki/32Documentation on building, installing and using Drizzle is available at
29https://launchpad.net/drizzle33http://docs.drizzle.org/
3034
31Compiling:35If 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
41Commercial troubleshooting and 24/7 production support is available from a few
42vendors at http://www.drizzle.org/content/support-and-services
43
44
45Compiling 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
59sudo apt-get build-dep drizzle
60# or
61yum-builddep drizzle
62
63### Compiling:
32# If you got the source from bzr, run:64# If you got the source from bzr, run:
33./config/autorun.sh65./config/autorun.sh
34# The following steps are the same regardless of where you got the source66# The following steps are the same regardless of where you got the source
@@ -38,18 +70,21 @@
38echo "FAIL $?"70echo "FAIL $?"
3971
40More information on compiling can be found at:72More information on compiling can be found at:
41http://drizzle.org/wiki/Compiling73http://docs.drizzle.org/installing/from_source.html
4274
43Running Drizzle:75### Running Drizzle:
44# be sure you configured with a prefix before running make install76# be sure you configured with a prefix before running make install
45make install77make install
46cd ${HOME}/builds/drizzle78cd ${HOME}/builds/drizzle
47./sbin/drizzled --no-defaults --port=XXXX \79./sbin/drizzled --no-defaults --mysql-protocol.port=3306 \
48 --basedir=$PWD --datadir=$PWD/var \80 --basedir=$PWD --datadir=$PWD/var \
49 >> $PWD/var/drizzle.err 2>&1 &81 >> $PWD/var/drizzle.err 2>&1 &
5082
51See also:83# See also:
52http://drizzle.org/wiki/Starting_drizzled84# http://docs.drizzle.org/installing/from_source.html#dependencies
53http://drizzle.org/wiki/Contributing_Code85# http://wiki.drizzle.org/Starting_drizzled
86# http://docs.drizzle.org/contributing/introduction.html
87
5488
55Cheers!89Cheers!
90 - The Drizzle team
56\ No newline at end of file91\ No newline at end of file