Manticore Search 6.0.0
包管理器
在 Debian、Ubuntu 或 Linux Mint 上使用 APT 安装 Manticore Search
如果您是从旧版本升级到 Manticore 6,建议先删除旧的软件包,以避免因更新的软件包结构导致的冲突:
sudo apt remove 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
sudo systemctl start manticore
在 文档 中了解有关 Manticore Search APT 仓库的更多信息。
在 Centos、RHEL、Oracle Linux 和 Amazon Linux 上使用 YUM 安装 Manticore Search
如果您是从旧版本升级到 Manticore 6,建议先删除旧的软件包,以避免因更新的软件包结构导致的冲突:
sudo yum remove manticore*
这不会删除您的数据,您的配置文件将保存在 /etc/manticoresearch/manticore.conf.rpmsave
安装 YUM 仓库和新版本:
sudo yum install https://repo.manticoresearch.com/manticore-repo.noarch.rpm
sudo yum install manticore manticore-extra
启动 Manticore
sudo systemctl start manticore
在 文档 中了解有关 Manticore Search YUM 仓库的更多信息。
在 MacOS 和 Linux 上使用 Homebrew 安装 Manticore Search
brew install manticoresoftware/manticore/manticoresearch manticoresoftware/manticore/manticore-extra
启动 Manticore
brew services start manticoresearch
在 文档 中了解有关 Manticore Search Homebrew 包的更多信息。
使用安装程序在 Windows 上安装 Manticore Search
- 下载 Manticore Search 安装程序 并运行。按照安装说明进行操作。
- 选择要安装的目录。
- 选择要安装的组件。我们推荐安装所有组件。
- Manticore 带有一个预配置的
manticore.conf
文件,处于 RT 模式 。不需要额外的配置。然而,配置文件中有几个硬编码的路径,例如log = C:/manticore/var/log/manticore/searchd.log
,指向C:\manticore
内的文件夹。如果您将 Manticore 安装到其他文件夹,Manticore 将在启动时自动更正这些路径,因此无需手动修改。
有关 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 Search 用于生产
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 上运行 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.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.manticoreearch.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/manticoreearch.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/manticoreearch.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/manticorearch.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/manticoreearch.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
其他下载
Manticore Search 的英语词干分析器
了解更多关于 Manticore Search 中形态学的内容 在文档中 。
解压
en.pak.tgz
到您配置中指定的文件夹,即
lemmatizer_base
(默认在 Linux 中为 /usr/share/manticore/
),然后重启 Manticore Search。
要在 Linux 上快速安装形态学,只需在终端中运行以下命令:
wget -P /usr/share/manticore/ https://repo.manticoresearch.com/repository/morphology/en.pak
Manticore Search 的德语词干分析器
了解更多关于 Manticore Search 中形态学的内容 在文档中 。
解压
de.pak.tgz
到您配置中指定的文件夹,即
lemmatizer_base
(默认在 Linux 中为 /usr/share/manticore/
),然后重启 Manticore Search。
要在 Linux 上快速安装形态学,只需在终端中运行以下命令:
wget -P /usr/share/manticore/ https://repo.manticoresearch.com/repository/morphology/de.pak
Manticore Search 的俄语词干分析器
了解更多关于 Manticore Search 中形态学的内容 在文档中 。
解压
ru.pak.tgz
到您配置中指定的文件夹,即
lemmatizer_base
(默认在 Linux 中为 /usr/share/manticore/
),然后重启 Manticore Search。
要在 Linux 上快速安装形态学,只需在终端中运行以下命令:
wget -P /usr/share/manticore/ https://repo.manticoresearch.com/repository/morphology/ru.pak
Manticore Search 的乌克兰语词干分析器
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.0.0-230206-8de9df201_${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.0.0-230206-8de9df201_${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.0.0-230206-8de9df201_${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.0.0_230206.8de9df201-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.0.0_230206.8de9df201-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.0.0_230206.8de9df201-1.el9.${arch}.rpm