File: amazon_linux.rst

package info (click to toggle)
groonga 16.0.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 188,416 kB
  • sloc: ansic: 772,827; cpp: 52,396; ruby: 40,556; javascript: 10,250; yacc: 7,045; sh: 5,627; python: 2,821; makefile: 1,679
file content (48 lines) | stat: -rw-r--r-- 1,332 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
.. -*- rst -*-

Amazon Linux
============

This section describes how to install Groonga related RPM packages on
Amazon Linux. You can install them by ``dnf``.

Amazon Linux 2023
-----------------

Install:

.. code-block:: console

   $ sudo dnf install -y https://apache.jfrog.io/artifactory/arrow/amazon-linux/$(cut -d: -f6 /etc/system-release-cpe)/apache-arrow-release-latest.rpm
   $ sudo dnf install -y https://packages.groonga.org/amazon-linux/2023/groonga-release-latest.noarch.rpm
   $ sudo dnf install -y groonga

.. include:: server-use.rst

You can't install groonga-tokenizer-mecab package in Amazon Linux 2023.
Because Amazon Linux 2023 doesn't provide `MeCab <https://taku910.github.io/mecab/>`_ package.

If you want to use :doc:`/reference/token_filters/token_filter_stem`, install groonga-token-filter-stem package.

Install groonga-token-filter-stem package:

.. code-block:: console

   $ sudo dnf install -y groonga-token-filter-stem

There is a package that provides MySQL compatible normalizer as a
Groonga plugin. If you want to use that one, install
groonga-normalizer-mysql package.

Install groonga-normalizer-mysql package:

.. code-block:: console

   $ sudo dnf install -y groonga-normalizer-mysql

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

Build from source is for developers.

See :doc:`/install/cmake` .