Manticore Search 6.0.0
包管理器
使用 APT 在 Debian、Ubuntu 或 Linux Mint 上安装 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 仓库的更多信息,请参阅 文档 。
使用 YUM 在 Centos、RHEL、Oracle Linux 和 Amazon Linux 上安装 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 仓库的更多信息,请参阅 文档 。
使用 Homebrew 在 MacOS 和 Linux 上安装 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 "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
请注意,退出 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.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
其他下载
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