2.5. AlmaLinux#
This section describes how to install Groonga related RPM packages on
AlmaLinux OS. You can install them by dnf
.
We distribute only 64-bit packages.
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.
2.5.1. AlmaLinux 9#
Install
% sudo dnf install -y https://apache.jfrog.io/artifactory/arrow/almalinux/9/apache-arrow-release-latest.rpm
% sudo dnf install -y https://packages.groonga.org/almalinux/9/groonga-release-latest.noarch.rpm
% sudo dnf install -y --enablerepo=epel --enablerepo=crb groonga
If you want to use MeCab as a tokenizer, install groonga-tokenizer-mecab package.
Install groonga-tokenizer-mecab package:
% sudo dnf install -y --enablerepo=epel 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 --enablerepo=epel groonga-normalizer-mysql
2.5.2. AlmaLinux 8#
Install:
% sudo dnf install -y https://packages.groonga.org/almalinux/8/groonga-release-latest.noarch.rpm
% sudo dnf install -y --enablerepo=epel --enablerepo=powertools groonga
If you want to use MeCab as a tokenizer, install groonga-tokenizer-mecab package.
Install groonga-tokenizer-mecab package:
% sudo dnf install -y --enablerepo=epel 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 --enablerepo=epel groonga-normalizer-mysql
2.5.3. Build from source#
Build from source is for developers.
See Others: Build with CMake .