This section describes how to install Groonga related deb packages on Ubuntu. You can install them by apt.
We distribute both 32-bit and 64-bit packages but we strongly recommend a 64-bit package for server. You should use a 32-bit package just only for tests or development. You will encounter an out of memory error with a 32-bit package even if you just process medium size data.
The Groonga APT repository for Ubuntu uses PPA (Personal Package Archive) on Launchpad. You can install Groonga by APT from the PPA.
Here are supported Ubuntu versions:
- 12.04 LTS Precise Pangolin
- 14.04 LTS Trusty Tahr
- 14.10 Utopic Unicorn
Enable the universe repository to install Groonga:
% sudo apt-get -y install software-properties-common
% sudo add-apt-repository -y universe
Add the ppa:groonga/ppa PPA to your system:
% sudo add-apt-repository -y ppa:groonga/ppa
% sudo apt-get update
Install:
% sudo apt-get -y install groonga
Note
groonga package is the minimum set of fulltext search engine. If you want to use Groonga for server use, you can install additional preconfigured packages.
There are two packages for server use.
See Server section about details.
If you want to use MeCab as a tokenizer, install groonga-tokenizer-mecab package.
Install groonga-tokenizer-mecab package:
% sudo apt-get -y install groonga-tokenizer-mecab
If you want to use TokenFilterStem as a token filter, install groonga-token-filter-stem package.
Install groonga-token-filter-stem package:
% sudo apt-get -y install groonga-token-filter-stem
There is a package that provides Munin plugins. If you want to monitor groonga status by Munin, install groonga-munin-plugins package.
Install groonga-munin-plugins package:
% sudo apt-get -y install groonga-munin-plugins
There is a package that provides MySQL compatible normalizer as Groonga plugins. If you want to use that one, install groonga-normalizer-mysql package.
Install groonga-normalizer-mysql package:
% sudo apt-get -y install groonga-normalizer-mysql
Install required packages to build Groonga:
% sudo apt-get -V -y install wget tar build-essential zlib1g-dev liblzo2-dev libmsgpack-dev libzmq-dev libevent-dev libmecab-dev
Download source:
% wget http://packages.groonga.org/source/groonga/groonga-4.0.9.tar.gz
% tar xvzf groonga-4.0.9.tar.gz
% cd groonga-4.0.9
Configure (see configure about configure options):
% ./configure
Build:
% make -j$(grep '^processor' /proc/cpuinfo | wc -l)
Install:
% sudo make install