Manticore Search 6.0.0
6.0.0 announcement | 6.0.0 changelog
Package managers
Install Manticore Search on Debian, Ubuntu or Linux Mint using APT
If you are upgrading to Manticore 6 from an older version, it is recommended to remove your old packages first to avoid conflicts caused by the updated package structure:
sudo apt remove manticore*
It won’t remove your data or configuration file.
Install the APT repository and the new version:
wget https://repo.manticoresearch.com/manticore-repo.noarch.deb
sudo dpkg -i manticore-repo.noarch.deb
sudo apt update
sudo apt install manticore manticore-extra
Start Manticore
sudo systemctl start manticore
Read more about Manticore Search’s APT repo in the documentation.
Install Manticore Search on Centos, RHEL, Oracle Linux and Amazon Linux using YUM
If you are upgrading to Manticore 6 from an older version, it is recommended to remove your old packages first to avoid conflicts caused by the updated package structure:
sudo yum remove manticore*
It won’t remove your data, your configuration file will be saved to /etc/manticoresearch/manticore.conf.rpmsave
Install the YUM repository and the new version:
sudo yum install https://repo.manticoresearch.com/manticore-repo.noarch.rpm
sudo yum install manticore manticore-extra
Start Manticore
sudo systemctl start manticore
Read more about Manticore Search’s YUM repo in the documentation.
Install Manticore Search on MacOS and Linuxes using Homebrew
brew install manticoresoftware/manticore/manticoresearch manticoresoftware/manticore/manticore-extra
Start Manticore
brew services start manticoresearch
Read more about Manticore Search’s Homebrew package in documentation.
Install Manticore Search on Windows using the installer
- Download the Manticore Search Installer and run it. Follow the installation instructions.
- Choose the directory to install to.
- Select the components you want to install. We recommend installing all of them.
- Manticore comes with a preconfigured
manticore.conf
file in RT mode. No additional configuration is required. However, the configuration file has several hardcoded paths, such aslog = C:/manticore/var/log/manticore/searchd.log
, that point to folders insideC:\manticore
. If you install Manticore to a different folder, Manticore will automatically correct these paths on startup, so there’s no need to modify them manually.
Please find more details on installing and using Manticore in Windows in the documentation.
One-liner to check out Manticore (non-production experimentation)
docker run -e EXTRA=1 --name manticore --rm -d manticoresearch/manticore && echo "Waiting for Manticore docker to start. Consider mapping the data_dir to make it start faster next time" && until docker logs manticore 2>&1 | grep -q "accepting connections"; do sleep 1; echo -n .; done && echo && docker exec -it manticore mysql && docker stop manticore
Note that upon exiting the MySQL client, the Manticore container will be stopped and removed, resulting in no saved data. For information on using Manticore in a production environment, please see below.
Run Manticore Search in Docker to use in production
docker run -e EXTRA=1 --name manticore -v $(pwd)/data:/var/lib/manticore -p 127.0.0.1:9306:9306 -p 127.0.0.1:9308:9308 -d manticoresearch/manticore
This setup will enable the Manticore Columnar Library and Manticore Buddy, and run Manticore on ports 9306 for MySQL connections and 9308 for all other connections, using ./data/
as the designated data directory."
Read more about production use in the documentation.
Separate packages
source /etc/os-release
arch=`dpkg --print-architecture`
wget https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-server_6.0.0-230206-8de9df201_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-server-core_6.0.0-230206-8de9df201_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-columnar-lib_2.0.0-230130-a7c703d_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-backup_0.5.2-23020607-4a37932_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-buddy_0.3.4-23020607-4798582_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-executor_0.6.2-23012605-d95e43e_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-tools_6.0.0-230206-8de9df201_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-common_6.0.0-230206-8de9df201_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore_6.0.0-230206-8de9df201_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-dev_6.0.0-230206-8de9df201_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-icudata-65l.deb
sudo apt -y update && sudo apt -y install ./*.deb
source /etc/os-release
arch=`dpkg --print-architecture`
wget https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-server_6.0.0-230206-8de9df201_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-server-core_6.0.0-230206-8de9df201_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-columnar-lib_2.0.0-230130-a7c703d_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-backup_0.5.2-23020607-4a37932_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-buddy_0.3.4-23020607-4798582_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-executor_0.6.2-23012605-d95e43e_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-tools_6.0.0-230206-8de9df201_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-common_6.0.0-230206-8de9df201_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore_6.0.0-230206-8de9df201_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-dev_6.0.0-230206-8de9df201_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-icudata-65l.deb
sudo apt -y update && sudo apt -y install ./*.deb
source /etc/os-release
arch=`dpkg --print-architecture`
wget https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-server_6.0.0-230206-8de9df201_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-server-core_6.0.0-230206-8de9df201_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-columnar-lib_2.0.0-230130-a7c703d_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-backup_0.5.2-23020607-4a37932_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-buddy_0.3.4-23020607-4798582_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-executor_0.6.2-23012605-d95e43e_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-tools_6.0.0-230206-8de9df201_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-common_6.0.0-230206-8de9df201_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore_6.0.0-230206-8de9df201_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-dev_6.0.0-230206-8de9df201_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-icudata-65l.deb
sudo apt -y update && sudo apt -y install ./*.deb
source /etc/os-release
arch=`dpkg --print-architecture`
wget https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-server_6.0.0-230206-8de9df201_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-server-core_6.0.0-230206-8de9df201_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-columnar-lib_2.0.0-230130-a7c703d_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-backup_0.5.2-23020607-4a37932_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-buddy_0.3.4-23020607-4798582_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-executor_0.6.2-23012605-d95e43e_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-tools_6.0.0-230206-8de9df201_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-common_6.0.0-230206-8de9df201_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore_6.0.0-230206-8de9df201_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-dev_6.0.0-230206-8de9df201_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-icudata-65l.deb
sudo apt -y update && sudo apt -y install ./*.deb
source /etc/os-release
arch=`dpkg --print-architecture`
wget https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-server_6.0.0-230206-8de9df201_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-server-core_6.0.0-230206-8de9df201_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-columnar-lib_2.0.0-230130-a7c703d_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-backup_0.5.2-23020607-4a37932_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-buddy_0.3.4-23020607-4798582_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-executor_0.6.2-23012605-d95e43e_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-tools_6.0.0-230206-8de9df201_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-common_6.0.0-230206-8de9df201_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore_6.0.0-230206-8de9df201_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-dev_6.0.0-230206-8de9df201_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-icudata-65l.deb
sudo apt -y update && sudo apt -y install ./*.deb
source /etc/os-release
arch=`dpkg --print-architecture`
wget https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-server_6.0.0-230206-8de9df201_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-server-core_6.0.0-230206-8de9df201_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-columnar-lib_2.0.0-230130-a7c703d_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-backup_0.5.2-23020607-4a37932_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-buddy_0.3.4-23020607-4798582_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-executor_0.6.2-23012605-d95e43e_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-tools_6.0.0-230206-8de9df201_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-common_6.0.0-230206-8de9df201_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore_6.0.0-230206-8de9df201_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-dev_6.0.0-230206-8de9df201_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-icudata-65l.deb
sudo apt -y update && sudo apt -y install ./*.deb
arch=`arch`
yum -y install https://repo.manticoresearch.com/repository/manticoresearch/release/centos/7/${arch}/manticore-common-6.0.0_230206.8de9df201-1.el7.centos.noarch.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/7/${arch}/manticore-server-6.0.0_230206.8de9df201-1.el7.centos.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/7/${arch}/manticore-server-core-6.0.0_230206.8de9df201-1.el7.centos.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/7/${arch}/manticore-tools-6.0.0_230206.8de9df201-1.el7.centos.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/7/${arch}/manticore-6.0.0_230206.8de9df201-1.el7.centos.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/7/${arch}/manticore-devel-6.0.0_230206.8de9df201-1.el7.centos.noarch.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/7/${arch}/manticore-buddy-0.3.4_23020607.4798582-1.el7.noarch.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/7/${arch}/manticore-backup-0.5.2_23020607.4a37932-1.el7.noarch.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/7/${arch}/manticore-executor-0.6.2_23012605.d95e43e-1.el7.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/7/${arch}/manticore-columnar-lib-2.0.0_230130.a7c703d-1.el7.centos.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/7/${arch}/manticore-icudata.rpm
arch=`arch`
yum -y install https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-common-6.0.0_230206.8de9df201-1.el8.noarch.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-server-6.0.0_230206.8de9df201-1.el8.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-server-core-6.0.0_230206.8de9df201-1.el8.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-tools-6.0.0_230206.8de9df201-1.el8.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-6.0.0_230206.8de9df201-1.el8.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-devel-6.0.0_230206.8de9df201-1.el8.noarch.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-buddy-0.3.4_23020607.4798582-1.el8.noarch.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-backup-0.5.2_23020607.4a37932-1.el8.noarch.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-executor-0.6.2_23012605.d95e43e-1.el8.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-columnar-lib-2.0.0_230130.a7c703d-1.el8.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-icudata.rpm
arch=`arch`
yum -y install https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-common-6.0.0_230206.8de9df201-1.el9.noarch.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-server-6.0.0_230206.8de9df201-1.el9.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-server-core-6.0.0_230206.8de9df201-1.el9.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-tools-6.0.0_230206.8de9df201-1.el9.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-6.0.0_230206.8de9df201-1.el9.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-devel-6.0.0_230206.8de9df201-1.el9.noarch.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-buddy-0.3.4_23020607.4798582-1.el9.noarch.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-backup-0.5.2_23020607.4a37932-1.el9.noarch.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-executor-0.6.2_23012605.d95e43e-1.el9.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-columnar-lib-2.0.0_230130.a7c703d-1.el9.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-icudata.rpm
VERSION_CODENAME=bionic
arch=`dpkg --print-architecture`
wget https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-server_6.0.0-230206-8de9df201_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-server-core_6.0.0-230206-8de9df201_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-columnar-lib_2.0.0-230130-a7c703d_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-backup_0.5.2-23020607-4a37932_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-buddy_0.3.4-23020607-4798582_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-executor_0.6.2-23012605-d95e43e_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-tools_6.0.0-230206-8de9df201_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-common_6.0.0-230206-8de9df201_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore_6.0.0-230206-8de9df201_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-dev_6.0.0-230206-8de9df201_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-icudata-65l.deb
sudo apt -y update && sudo apt -y install ./*.deb
VERSION_CODENAME=focal
arch=`dpkg --print-architecture`
wget https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-server_6.0.0-230206-8de9df201_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-server-core_6.0.0-230206-8de9df201_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-columnar-lib_2.0.0-230130-a7c703d_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-backup_0.5.2-23020607-4a37932_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-buddy_0.3.4-23020607-4798582_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-executor_0.6.2-23012605-d95e43e_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-tools_6.0.0-230206-8de9df201_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-common_6.0.0-230206-8de9df201_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore_6.0.0-230206-8de9df201_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-dev_6.0.0-230206-8de9df201_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-icudata-65l.deb
sudo apt -y update && sudo apt -y install ./*.deb
Other downloads
English lemmatizer for Manticore Search
Read more about morphology in Manticore Search in the documentation.
Unpack en.pak.tgz to the folder which is specified as lemmatizer_base in your config (/usr/share/manticore/
by default in Linux) and restart Manticore Search.
For a quick installation of the morphology on Linux, simply run the following command in your terminal:
wget -P /usr/share/manticore/ https://repo.manticoresearch.com/repository/morphology/en.pak
German lemmatizer for Manticore Search
Read more about morphology in Manticore Search in the documentation.
Unpack de.pak.tgz to the folder which is specified as lemmatizer_base in your config (/usr/share/manticore/
by default in Linux) and restart Manticore Search.
For a quick installation of the morphology on Linux, simply run the following command in your terminal:
wget -P /usr/share/manticore/ https://repo.manticoresearch.com/repository/morphology/de.pak
Russian lemmatizer for Manticore Search
Read more about morphology in Manticore Search in the documentation.
Unpack ru.pak.tgz to the folder which is specified as lemmatizer_base in your config (/usr/share/manticore/
by default in Linux) and restart Manticore Search.
For a quick installation of the morphology on Linux, simply run the following command in your terminal:
wget -P /usr/share/manticore/ https://repo.manticoresearch.com/repository/morphology/ru.pak
Ukrainian lemmatizer for Manticore Search
Index converter from Sphinx/Manticore 2.x to Manticore 3.x
Note, Manticore 4 and 5 can also read the converted indexes. Read more about migration from Sphinx 2 / Manticore 2 in the documentation.
sudo apt install manticore-converter
if you use the Manticore APT repository or:
source /etc/os-release
arch=`dpkg --print-architecture`
wget https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-converter_6.0.0-230206-8de9df201_${arch}.deb
sudo apt -y update && sudo apt -y install ./manticore-converter*deb
sudo apt install manticore-converter
if you use the Manticore APT repository or:
VERSION_CODENAME=bionic
arch=`dpkg --print-architecture`
wget https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-converter_6.0.0-230206-8de9df201_${arch}.deb
sudo apt -y update && sudo apt -y install ./manticore-converter*deb
sudo apt install manticore-converter
if you use the Manticore APT repository or:
VERSION_CODENAME=focal
arch=`dpkg --print-architecture`
wget https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-converter_6.0.0-230206-8de9df201_${arch}.deb
sudo apt -y update && sudo apt -y install ./manticore-converter*deb
sudo yum install manticore-converter
if you use the Manticore YUM repository or:
arch=`arch`
yum -y install https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-converter-6.0.0_230206.8de9df201-1.el9.${arch}.rpm
sudo yum install manticore-converter
if you use the Manticore YUM repository or:
arch=`arch`
yum -y install https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-converter-6.0.0_230206.8de9df201-1.el8.${arch}.rpm
sudo yum install manticore-converter
if you use the Manticore YUM repository or:
arch=`arch`
yum -y install https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-converter-6.0.0_230206.8de9df201-1.el9.${arch}.rpm