Sophie

Sophie

distrib > Fedora > 18 > x86_64 > media > updates > by-pkgid > e450e7f3d6075c4a54de19e68d38177f > files > 383

groonga-doc-3.0.5-1.fc18.x86_64.rpm

.. -*- rst -*-

.. highlightlang:: none

Fedora
======

This section describes how to install groonga related RPM packages on
Fedora. You can install them by ``yum``.

.. note::

  Since groonga 3.0.2 release, Groonga related RPM pakcages are in the official
  Fedora yum repository (Fedora 18). So you can use them instead of the groonga yum
  repository now. There is some exceptions to use the groonga yum
  repository because ``groonga-normalizer-mysql`` and mecab dictionaries
  (mecab-ipadic or mecab-jumandic) are provided by
  the groonga yum repository. But we will also plan to release
  ``groonga-normalizer-mysql`` in the official Fedora yum repository in the future.

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.

.. include:: server-use.inc

Fedora 18
---------

Install::

  % sudo yum install -y groonga

Note that additional packages such as ``groonga-normalizer-mysql``,
``mecab-dic`` and ``mecab-jumandic`` packages require to install
``groonga-release`` package which provides the groonga yum repository beforehand::

  % sudo rpm -ivh http://packages.groonga.org/fedora/groonga-release-1.1.0-1.noarch.rpm
  % sudo yum update

If you want to use `MeCab <http://mecab.sourceforge.net/>`_ as a
tokenizer, install groonga-tokenizer-mecab package.

Install groonga-tokenizer-mecab package::

  % sudo yum install -y groonga-tokenizer-mecab

Then install MeCab dictionary. (mecab-ipadic or mecab-jumandic)

Install IPA dictionary::

  % sudo yum install -y mecab-ipadic

Or install Juman dictionary::

  % sudo yum install -y mecab-jumandic

There is a package that provides `Munin
<http://munin-monitoring.org/>`_ plugins. If you want to monitor
groonga status by Munin, install groonga-munin-plugins package.

Install groonga-munin-plugins package::

  % sudo yum install -y 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 yum install -y install groonga-normalizer-mysql

Build from source
-----------------

Install required packages to build groonga::

  % sudo yum install -y wget tar gcc-c++ make mecab-devel libedit-devel

Download source::

  % wget http://packages.groonga.org/source/groonga/groonga-3.0.5.tar.gz
  % tar xvzf groonga-3.0.5.tar.gz
  % cd groonga-3.0.5

Configure (see :ref:`source-configure` about ``configure`` options)::

  % ./configure

Build::

  % make -j$(grep '^processor' /proc/cpuinfo | wc -l)

Install::

  % sudo make install