2.6. Amazon Linux#

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

2.6.1. Amazon Linux 2023#

Install:

$ 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

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.

  • Groonga HTTP server (HTTP based server package)

  • groonga-server-gqtp (GQTP based server package)

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 dnf install -y groonga-tokenizer-mecab

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:

$ sudo dnf install -y groonga-normalizer-mysql

2.6.2. Build from source#

Build from source is for developers.

See Others: Build with CMake .