Install Drizzle On Debian Lenny
Install Drizzle On Debian LennyDrizzle is a Free Software/Open Source database management system (DBMS) that was forked from version 6.0 of the MySQL DBMS. Like MySQL, Drizzle has a client/server architecture and uses SQL as its primary command language. Drizzle is distributed under version 2 of the GNU General Public License. Drizzle is written in the C++ programming language, and stores its string data in an UTF-8 format. It is being developed for modern Unix-like operating systems, including Linux, Mac OS X, and Solaris – in general, any OS that conforms to POSIX. Well, i decided to try to get drizzle up on my Debian Lenny. So if you need to install Drizzle on a Debian, make sure that all build dependencies are met:
protobuf : Protocol Buffers - Google's data interchange format You can get them with aptitude like: $ sudo aptitude install libprotobuf-dev protobuf-compiler uuid-dev libdrizzle0 libdrizzle-dev libreadline5-dev libpcre3-dev Download the last source code archives for the Drizzle database server:
$ wget http://launchpad.net/drizzle/trunk/aloha/+download/drizzle-2009.07.1088.tar.gz Create a non-privileged group and user for the database server, as below:
$ sudo groupadd drizzle Create data directory and set the right permission on it:
$ sudo mkdir /usr/local/drizzle/data Then, start up the Drizzle server by this command: $ sudo ./usr/local/drizzle/sbin/drizzled --user=drizzle --datadir=/usr/local/drizzle/data/ & Run the drizzle client, which is very similar to the MySQL client. Start it up and access the Drizzle server as below: $ ./usr/local/drizzle/bin/drizzle Welcome to the Drizzle client.. Commands end with ; or \g.
|



Recent comments
1 day 4 hours ago
1 day 15 hours ago
1 day 21 hours ago
2 days 15 hours ago
2 days 17 hours ago
2 days 17 hours ago
2 days 21 hours ago
2 days 22 hours ago
3 days 13 hours ago
3 days 15 hours ago