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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
|
# Ubuntu
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.
## Register Groonga APT repository
### APT Repository (packages.groonga.org)
Groonga packages are distributed via our Groonga APT repository at
https://packages.groonga.org.
Install `groonga-apt-source` to enable Groonga APT repository.
```bash
sudo apt update
sudo apt install -y -V ca-certificates lsb-release wget
wget https://packages.groonga.org/ubuntu/groonga-apt-source-latest-$(lsb_release --codename --short).deb
sudo apt install -y -V ./groonga-apt-source-latest-$(lsb_release --codename --short).deb
sudo apt update
```
### PPA (Personal Package Archive)
```{note}
The PPA will be deprecated. We strongly recommend using our Groonga APT
repository (packages.groonga.org) because packages from that repository are built
with Apache Arrow enabled. This configuration unlocks extra features, such as
parallel offline index building.
```
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:
- 22.04 LTS Jammy Jellyfish
- 24.04 LTS Noble Numbat
Enable the universe repository to install Groonga:
```bash
sudo apt -V -y install software-properties-common
sudo add-apt-repository -y universe
```
Add the `ppa:groonga/ppa` PPA to your system:
```bash
sudo add-apt-repository -y ppa:groonga/ppa
sudo apt update
```
## `groonga` package
Install:
```bash
sudo apt -V -y install groonga
```
```{include} server-use.md
```
## `groonga-tokenizer-mecab` package
If you want to use [MeCab](https://taku910.github.io/mecab/) as a
tokenizer, install `groonga-tokenizer-mecab` package.
Install `groonga-tokenizer-mecab` package:
```bash
sudo apt -V -y install groonga-tokenizer-mecab
```
## `groonga-token-filter-stem` package
If you want to use `TokenFilterStem` as a token filter, install
`groonga-token-filter-stem` package.
Install groonga-token-filter-stem package:
```bash
sudo apt -V -y install groonga-token-filter-stem
```
## `groonga-munin-plugins` package
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:
```bash
sudo apt -V -y install groonga-munin-plugins
```
## `groonga-normalizer-mysql` package
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:
```bash
sudo apt -V -y install groonga-normalizer-mysql
```
## Build from source
Build from source is for developers.
See {doc}`/install/cmake` .
|