Manticore 搜索 6.2.0

Manticore 6.2.0 通告 | 更新日志

软件包管理器

在 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

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

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 和 Linux 上使用 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 文件,在 RT 模式 。不需额外配置。

有关在 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 上运行 Manticore 以供其他所有连接,使用 ./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.0-230804-45680f95d_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-server-core_6.2.0-230804-45680f95d_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-columnar-lib_2.2.0-230804-dc33868_${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.6-23080410-8f5cfa5_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-tools_6.2.0-230804-45680f95d_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-common_6.2.0-230804-45680f95d_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore_6.2.0-230804-45680f95d_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-dev_6.2.0-230804-45680f95d_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.0-230804-45680f95d_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-server-core_6.2.0-230804-45680f95d_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-columnar-lib_2.2.0-230804-dc33868_${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.6-23080410-8f5cfa5_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-tools_6.2.0-230804-45680f95d_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-common_6.2.0-230804-45680f95d_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore_6.2.0-230804-45680f95d_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-dev_6.2.0-230804-45680f95d_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.0-230804-45680f95d_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-server-core_6.2.0-230804-45680f95d_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-columnar-lib_2.2.0-230804-dc33868_${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.6-23080410-8f5cfa5_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-tools_6.2.0-230804-45680f95d_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-common_6.2.0-230804-45680f95d_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore_6.2.0-230804-45680f95d_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-dev_6.2.0-230804-45680f95d_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.0-230804-45680f95d_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-server-core_6.2.0-230804-45680f95d_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-columnar-lib_2.2.0-230804-dc33868_${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.6-23080410-8f5cfa5_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-tools_6.2.0-230804-45680f95d_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-common_6.2.0-230804-45680f95d_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore_6.2.0-230804-45680f95d_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-dev_6.2.0-230804-45680f95d_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.0-230804-45680f95d_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-server-core_6.2.0-230804-45680f95d_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-columnar-lib_2.2.0-230804-dc33868_${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.6-23080410-8f5cfa5_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-tools_6.2.0-230804-45680f95d_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-common_6.2.0-230804-45680f95d_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore_6.2.0-230804-45680f95d_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-dev_6.2.0-230804-45680f95d_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.0-230804-45680f95d_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-server-core_6.2.0-230804-45680f95d_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-columnar-lib_2.2.0-230804-dc33868_${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.6-23080410-8f5cfa5_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-tools_6.2.0-230804-45680f95d_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-common_6.2.0-230804-45680f95d_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore_6.2.0-230804-45680f95d_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-dev_6.2.0-230804-45680f95d_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.0_230804.45680f95d-1.el7.centos.noarch.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/7/${arch}/manticore-server-6.2.0_230804.45680f95d-1.el7.centos.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/7/${arch}/manticore-server-core-6.2.0_230804.45680f95d-1.el7.centos.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/7/${arch}/manticore-tools-6.2.0_230804.45680f95d-1.el7.centos.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/7/${arch}/manticore-6.2.0_230804.45680f95d-1.el7.centos.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/7/${arch}/manticore-devel-6.2.0_230804.45680f95d-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.6_23080410.8f5cfa5-1.el7.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/7/${arch}/manticore-columnar-lib-2.2.0_230804.dc33868-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.0_230804.45680f95d-1.el8.noarch.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-server-6.2.0_230804.45680f95d-1.el8.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-server-core-6.2.0_230804.45680f95d-1.el8.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-tools-6.2.0_230804.45680f95d-1.el8.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-6.2.0_230804.45680f95d-1.el8.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-devel-6.2.0_230804.45680f95d-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.6_23080410.8f5cfa5-1.el8.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-columnar-lib-2.2.0_230804.dc33868-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.0_230804.45680f95d-1.el9.noarch.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-server-6.2.0_230804.45680f95d-1.el9.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-server-core-6.2.0_230804.45680f95d-1.el9.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-tools-6.2.0_230804.45680f95d-1.el9.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-6.2.0_230804.45680f95d-1.el9.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-devel-6.2.0_230804.45680f95d-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.6_23080410.8f5cfa5-1.el9.${arch}.rpm \
https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-columnar-lib-2.2.0_230804.dc33868-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.0-230804-45680f95d_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-server-core_6.2.0-230804-45680f95d_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-columnar-lib_2.2.0-230804-dc33868_${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.6-23080410-8f5cfa5_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-tools_6.2.0-230804-45680f95d_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-common_6.2.0-230804-45680f95d_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore_6.2.0-230804-45680f95d_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-dev_6.2.0-230804-45680f95d_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.0-230804-45680f95d_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-server-core_6.2.0-230804-45680f95d_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-columnar-lib_2.2.0-230804-dc33868_${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.6-23080410-8f5cfa5_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-tools_6.2.0-230804-45680f95d_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-common_6.2.0-230804-45680f95d_all.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore_6.2.0-230804-45680f95d_${arch}.deb \
https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-dev_6.2.0-230804-45680f95d_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搜索的英语、德语和俄语词形还原器

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

解压 en.pak.tgz 以获取英语, de.pak.tgz 以获取德语,或 ru.pak.tgz 以获取俄语到指定的文件夹 lemmatizer_base 在你的配置中(/usr/share/manticore/ 是Linux上的默认值),并重启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.0-230804-45680f95d_${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.0-230804-45680f95d_${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.0-230804-45680f95d_${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.0_230804.45680f95d-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.0_230804.45680f95d-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.0_230804.45680f95d-1.el9.${arch}.rpm

存档版本

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

安装Manticore Search

安装Manticore Search