Manticore 搜索 6.2.12

版本 6.2.12 继续 6.2 系列,并解决了在 6.2.0 发布后发现的问题。

Manticore 6.2.0 公告 | 6.2.12 更新日志

包管理器

在 Debian、Ubuntu 或 Linux Mint 上使用 APT 安装 Manticore 搜索

安装 APT 存储库和新版本:

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

如果您是从旧版本升级,建议先删除旧的软件包,以避免因更新的包结构引起的冲突:

sudo apt remove 'manticore*'

它不会删除您的数据或配置文件。

启动 Manticore

sudo systemctl start manticore

文档 中了解有关 Manticore 搜索的 APT 存储库的更多信息。

在 Centos、RHEL、Oracle Linux 和 Amazon Linux 上使用 YUM 安装 Manticore 搜索

安装 YUM 存储库和新版本:

sudo yum install https://repo.manticoresearch.com/manticore-repo.noarch.rpm
sudo yum install manticore manticore-extra

如果您是从旧版本升级,建议先删除旧的软件包,以避免因更新的包结构引起的冲突:

sudo yum --setopt=tsflags=noscripts remove 'manticore*'

它不会删除您的数据。如果您对配置文件进行了更改,它将保存在 /etc/manticoresearch/manticore.conf.rpmsave 中。

启动 Manticore

sudo systemctl start manticore

文档 中了解有关 Manticore 搜索的 YUM 存储库的更多信息。

在 MacOS 上使用 Homebrew 安装 Manticore 搜索

brew install manticoresoftware/tap/manticoresearch manticoresoftware/tap/manticore-extra

启动 Manticore

brew services start manticoresearch

文档 中了解有关 Manticore 搜索的 Homebrew 软件包的更多信息。

使用安装程序在 Windows 上安装 Manticore 搜索

  1. 下载 Manticore 搜索安装程序 并运行它。按照安装说明进行操作。
  2. 选择要安装的目录。
  3. 选择您想要安装的组件。我们建议安装所有组件。
  4. Manticore 附带一个预配置的 manticore.conf 文件,处于 实时模式 。无需额外配置。

请在 文档 中获取有关在 Windows 上安装和使用 Manticore 的更多详细信息。

一行命令检查 Manticore(非生产实验)

docker run -e EXTRA=1 --name manticore --rm -d manticoresearch/manticore && echo "正在等待 Manticore docker 启动。考虑映射 data_dir 以便下次启动更快" && 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

请注意,退出 MySQL 客户端后,Manticore 容器将被停止并删除,导致没有保存的数据。有关在生产环境中使用 Manticore 的信息,请参见下文。

在 Docker 中运行 Manticore 搜索以供生产使用

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

此设置将启用 Manticore 列式库和 Manticore Buddy,并在 9306 端口上运行 Manticore 以供 MySQL 连接,在 9308 端口上运行以供所有其他连接,使用 ./data/ 作为指定的数据目录。

文档 中了解有关生产使用的更多信息。


独立包

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.2.12-230822-dc5144d35_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-server-core_6.2.12-230822-dc5144d35_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-columnar-lib_2.2.4-230822-5aec342_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-backup_1.0.8-23080408-f7638f9_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-buddy_1.0.18-23080408-2befdbe_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-executor_0.7.8-23082210-810d7d3_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-tools_6.2.12-230822-dc5144d35_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-common_6.2.12-230822-dc5144d35_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore_6.2.12-230822-dc5144d35_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-dev_6.2.12-230822-dc5144d35_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.2.12-230822-dc5144d35_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-server-core_6.2.12-230822-dc5144d35_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-columnar-lib_2.2.4-230822-5aec342_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-backup_1.0.8-23080408-f7638f9_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-buddy_1.0.18-23080408-2befdbe_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-executor_0.7.8-23082210-810d7d3_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-tools_6.2.12-230822-dc5144d35_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-common_6.2.12-230822-dc5144d35_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore_6.2.12-230822-dc5144d35_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-dev_6.2.12-230822-dc5144d35_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.2.12-230822-dc5144d35_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-server-core_6.2.12-230822-dc5144d35_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-columnar-lib_2.2.4-230822-5aec342_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-backup_1.0.8-23080408-f7638f9_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-buddy_1.0.18-23080408-2befdbe_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-executor_0.7.8-23082210-810d7d3_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-tools_6.2.12-230822-dc5144d35_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-common_6.2.12-230822-dc5144d35_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore_6.2.12-230822-dc5144d35_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-dev_6.2.12-230822-dc5144d35_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.2.12-230822-dc5144d35_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-server-core_6.2.12-230822-dc5144d35_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-columnar-lib_2.2.4-230822-5aec342_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-backup_1.0.8-23080408-f7638f9_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-buddy_1.0.18-23080408-2befdbe_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-executor_0.7.8-23082210-810d7d3_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-tools_6.2.12-230822-dc5144d35_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-common_6.2.12-230822-dc5144d35_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore_6.2.12-230822-dc5144d35_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-dev_6.2.12-230822-dc5144d35_all.deb \
https://repo.manticoresearch.com/repository/manticoreearch_${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.2.12-230822-dc5144d35_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-server-core_6.2.12-230822-dc5144d35_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-columnar-lib_2.2.4-230822-5aec342_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-backup_1.0.8-23080408-f7638f9_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-buddy_1.0.18-23080408-2befdbe_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-executor_0.7.8-23082210-810d7d3_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-tools_6.2.12-230822-dc5144d35_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-common_6.2.12-230822-dc5144d35_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore_6.2.12-230822-dc5144d35_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-dev_6.2.12-230822-dc5144d35_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.2.12-230822-dc5144d35_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-server-core_6.2.12-230822-dc5144d35_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-columnar-lib_2.2.4-230822-5aec342_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-backup_1.0.8-23080408-f7638f9_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-buddy_1.0.18-23080408-2befdbe_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-executor_0.7.8-23082210-810d7d3_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-tools_6.2.12-230822-dc5144d35_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-common_6.2.12-230822-dc5144d35_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore_6.2.12-230822-dc5144d35_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-dev_6.2.12-230822-dc5144d35_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.2.12_240405.76ffd700c-1.el7.centos.noarch.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/7/${arch}/manticore-server-6.2.12_240405.76ffd700c-1.el7.centos.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/7/${arch}/manticore-server-core-6.2.12_240405.76ffd700c-1.el7.centos.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/7/${arch}/manticore-tools-6.2.12_240405.76ffd700c-1.el7.centos.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/7/${arch}/manticore-6.2.12_240405.76ffd700c-1.el7.centos.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/7/${arch}/manticore-devel-6.2.12_240405.76ffd700c-1.el7.centos.noarch.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/7/${arch}/manticore-buddy-1.0.18_23080408.2befdbe-1.el7.noarch.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/7/${arch}/manticore-backup-1.0.8_23080408.f7638f9-1.el7.noarch.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/7/${arch}/manticore-executor-0.7.8_24050305.810d7d3-1.el7.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/7/${arch}/manticore-columnar-lib-2.2.4_240503.3b451cd-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.2.12_240405.76ffd700c-1.el8.noarch.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-server-6.2.12_240405.76ffd700c-1.el8.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-server-core-6.2.12_240405.76ffd700c-1.el8.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-tools-6.2.12_240405.76ffd700c-1.el8.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-6.2.12_240405.76ffd700c-1.el8.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-devel-6.2.12_240405.76ffd700c-1.el8.noarch.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-buddy-1.0.18_23080408.2befdbe-1.el8.noarch.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-backup-1.0.8_23080408.f7638f9-1.el8.noarch.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-executor-0.7.8_24050305.810d7d3-1.el8.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-columnar-lib-2.2.4_240503.3b451cd-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.2.12_240405.76ffd700c-1.el9.noarch.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-server-6.2.12_240405.76ffd700c-1.el9.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-server-core-6.2.12_240405.76ffd700c-1.el9.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-tools-6.2.12_240405.76ffd700c-1.el9.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-6.2.12_240405.76ffd700c-1.el9.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-devel-6.2.12_240405.76ffd700c-1.el9.noarch.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-buddy-1.0.18_23080408.2befdbe-1.el9.noarch.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-backup-1.0.8_23080408.f7638f9-1.el9.noarch.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-executor-0.7.8_24050305.810d7d3-1.el9.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-columnar-lib-2.2.4_240503.3b451cd-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.2.12-230822-dc5144d35_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-server-core_6.2.12-230822-dc5144d35_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-columnar-lib_2.2.4-230822-5aec342_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-backup_1.0.8-23080408-f7638f9_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-buddy_1.0.18-23080408-2befdbe_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-executor_0.7.8-23082210-810d7d3_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-tools_6.2.12-230822-dc5144d35_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-common_6.2.12-230822-dc5144d35_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore_6.2.12-230822-dc5144d35_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-dev_6.2.12-230822-dc5144d35_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.2.12-230822-dc5144d35_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-server-core_6.2.12-230822-dc5144d35_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-columnar-lib_2.2.4-230822-5aec342_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-backup_1.0.8-23080408-f7638f9_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-buddy_1.0.18-23080408-2befdbe_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-executor_0.7.8-23082210-810d7d3_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-tools_6.2.12-230822-dc5144d35_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-common_6.2.12-230822-dc5144d35_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore_6.2.12-230822-dc5144d35_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-dev_6.2.12-230822-dc5144d35_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

其他下载

Manticore Search 的英语、德语和俄语词形还原器

阅读有关 Manticore Search 中形态学的更多信息 在文档中

解压 en.pak.tgz 为英语, de.pak.tgz 为德语,或 ru.pak.tgz 为俄语,放入指定为 lemmatizer_base 的文件夹中(在 Linux 上默认是 /usr/share/manticore/),然后重启 Manticore Search。

以下是在终端中执行的步骤:

wget -P /usr/share/manticore/ https://repo.manticoresearch.com/repository/morphology/en.pak
wget -P /usr/share/manticore/ https://repo.manticoresearch.com/repository/morphology/de.pak
wget -P /usr/share/manticore/ https://repo.manticoresearch.com/repository/morphology/ru.pak

或者,你可以安装包含上述文件的包 manticore-language-packs

通过 APT:

apt install manticore-language-packs

通过 YUM:

yum install manticore-language-packs

通过 MacOS 上的 Homebrew:

brew tap manticoresoftware/tap
brew install manticoresoftware/tap/manticore-language-packs

从 Sphinx/Manticore 2.x 到 Manticore 3.x 的索引转换器

注意,Manticore 4 和 5 也可以读取转换后的索引。在文档中阅读有关从 Sphinx 2 / Manticore 2 的迁移 在此处

sudo apt install manticore-converter

如果你使用 Manticore APT 仓库,或者:

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.2.12-230822-dc5144d35_${arch}.deb
sudo apt -y update && sudo apt -y install ./manticore-converter*deb

sudo apt install manticore-converter

如果您使用 Manticore APT 仓库或:

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.2.12-230822-dc5144d35_${arch}.deb
sudo apt -y update && sudo apt -y install ./manticore-converter*deb

sudo apt install manticore-converter

如果您使用 Manticore APT 仓库或:

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.2.12-230822-dc5144d35_${arch}.deb
sudo apt -y update && sudo apt -y install ./manticore-converter*deb

sudo yum install manticore-converter

如果您使用 Manticore YUM 仓库或:

arch=`arch`
yum -y install https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-converter-6.2.12_240405.76ffd700c-1.el9.${arch}.rpm

sudo yum install manticore-converter

如果您使用 Manticore YUM 仓库或:

arch=`arch`
yum -y install https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-converter-6.2.12_240405.76ffd700c-1.el8.${arch}.rpm

sudo yum install manticore-converter

如果您使用 Manticore YUM 仓库或:

arch=`arch`
yum -y install https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-converter-6.2.12_240405.76ffd700c-1.el9.${arch}.rpm

存档版本

您可以在 Github Releases 中找到 3.5.0 之前版本的 Manticore Search 软件包
您可以在 repo.manticoresearch.com 中找到自 3.5.0 以来版本的 Manticore Search 软件包

安装Manticore Search

安装Manticore Search