惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

MongoDB | Blog
MongoDB | Blog
Recorded Future
Recorded Future
Jina AI
Jina AI
The Register - Security
The Register - Security
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
月光博客
月光博客
博客园 - 三生石上(FineUI控件)
F
Fortinet All Blogs
人人都是产品经理
人人都是产品经理
S
SegmentFault 最新的问题
Apple Machine Learning Research
Apple Machine Learning Research
L
LangChain Blog
Y
Y Combinator Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
GbyAI
GbyAI
The GitHub Blog
The GitHub Blog
Vercel News
Vercel News
博客园 - 【当耐特】
雷峰网
雷峰网
The Cloudflare Blog
阮一峰的网络日志
阮一峰的网络日志
aimingoo的专栏
aimingoo的专栏
云风的 BLOG
云风的 BLOG
I
InfoQ
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Google DeepMind News
Google DeepMind News
Security Latest
Security Latest
有赞技术团队
有赞技术团队
L
Lohrmann on Cybersecurity
P
Proofpoint News Feed
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
The Last Watchdog
The Last Watchdog
P
Privacy & Cybersecurity Law Blog
Scott Helme
Scott Helme
Google Online Security Blog
Google Online Security Blog
WordPress大学
WordPress大学
Hacker News - Newest:
Hacker News - Newest: "LLM"
NISL@THU
NISL@THU
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
B
Blog RSS Feed
Cyberwarzone
Cyberwarzone
K
Kaspersky official blog
F
Full Disclosure
Martin Fowler
Martin Fowler
Spread Privacy
Spread Privacy
D
Docker
C
Cisco Blogs
www.infosecurity-magazine.com
www.infosecurity-magazine.com
H
Hacker News: Front Page

地球人

Charged App - 使用说明和隐私权政策 kas 使用说明 kas 用户协议 CSUBOT 机器人 Discord 版使用说明书 groupultra telegram-search 部署教程 CSUBOT 机器人程序部署说明书 CSUBOT 机器人使用说明书 Windows 设备开启 BBR 拥塞控制算法 2026年最新:Apple iOS 上免费的代理客户端 (2025年3月)Linux 编译安装 PostgreSQL 17.4 MariaDB服务器报错unauthenticated?可能是MySQL-connector-python的问题 Raspberry Pi OS 全球软件源镜像站点列表 如何在树莓派上安装 Raspberry Pi OS(2025年) 怎样删除 Archive.today 上已经存档的网页? 我测试了全部的中国AI应用 hexo-submit-urls-to-search-engine 插件说明文档 查找iOS应用可通过哪些地区的Apple App Store下载的方法 东亚地区国际客运轮渡航线地图 TikTok 和 RedNote 的区别 跨境转账汇款-电汇费用分析 低成本保号香港电话卡 ClubSIM ( 支持 VoWiFi ) 解决 MX Player 报错: this audio format eac3 is not supported 使用 Kiwix 下载并阅读离线维基百科 隐私权政策
如何在 Linux 设备上安装 Manticore Search
地球人 · 2025-03-22 · via 地球人

Manticore Search 是一款轻量级全文搜索引擎,本文为您讲解在 Linux 设备上的安装流程。

Manticore Search 本身是一个开源数据库(可在 GitHub 上获取),于 2017 年作为 Sphinx 搜索 引擎的延续而创建。

安装要求

用软件包直接安装,要求:

ARM64 架构 的设备,如 树莓派 ( Raspberry Pi ) 、苹果 M1/M2

检查是否符合安装要求

只需要确认 架构是 arm64 或 x86_64 ,这一条就行。

检查 CPU 架构。

uname -m

aarch64 x86_64

确认 CPU 是否支持 64 位

lscpu

检查内核是否支持。即使你的 CPU 是 64 位的,操作系统可能是 32 位的,运行以下命令确认:

getconf LONG_BIT

以上三个命令,全部有 64 输出即可。

如果不满足条件,可以选择重新安装操作系统或者更换设备。

以 arm64, 操作系统为 debian 或 ubuntu 的设备为例,安装过程:

在主目录创建一个文件夹。

mkdir manticore && cd manticore

下载并安装 manticore-repo.noarch.deb,添加 Manticore Search 软件的 APT 存储库,以便可以通过 apt 进行安装和更新。

wget https://repo.manticoresearch.com/manticore-repo.noarch.deb
sudo dpkg -i manticore-repo.noarch.deb

更新本地 APT 软件包索引

如果报错:

N: Skipping acquire of configured file 'main/binary-armhf/Packages' as repository 'http://repo.manticoresearch.com/repository/ InRelease' doesn't support architecture 'armhf'

表示没有 armhf 架构的软件包。

尝试使用架构 arm64 的软件包。

sudo dpkg --add-architecture arm64

安装 manticore 软件包的 ARM64 架构 版本

sudo apt install manticore:arm64 manticore-extra:arm64

成功安装之后,尝试查询安装的软件包。

sudo apt list --installed | grep manticore

配置文件保存在 /etc/manticoresearch/manticore.conf ,请根据需要进行修改。

安装后,Manticore Search 服务不会自动启动。要启动 Manticore,请运行以下命令:

sudo systemctl start manticore

要查看 Manticore 服务状态,请运行以下命令:

sudo systemctl status manticore

要停止 Manticore,请运行以下命令:

sudo systemctl stop manticore

要使 Manticore 在启动时启动,请运行:

sudo systemctl enable manticore

searchd进程在systemd日志中记录启动信息。如果systemd启用了日志记录,则可以使用以下命令查看记录的信息:

sudo journalctl -u manticore

参考资料

官方文档 https://manual.manticoresearch.com

安装之后,请参照官方文档进行配置。

本网页的其他版本

本文章有多种语言的版本。

这些网页仅支持浏览,无法发表评论或留言,但提供了更多语言选项,并且加载时间更短:

ZH EN ZH-TW JA RU KO CS ES AR FR PT DE TR IT NL SV DA FI PL UK HE RO HU EL HR TH HI BN ID SW VI NO