下载windows安装包。Install Manticore Search
选择自己的安装路径,官方建议所有组建均安装。
将Manticore Search注册为Windows服务,运行下方命令。
\path\to\searchd.exe --install --config \path\to\config --servicename Manticore
将上方命令中的\path\to
替换为自己的安装目录。例如将Manticore安装在E盘,则命令为
E:\Manticore\bin\searchd.exe --install --config E:\Manticore\etc\manticoresearch\manticore.conf --servicename Manticore
其中E:\Manticore\etc\manticoresearch\manticore.conf为官方提供的一个配置文件,当然也可以自己提供配置文件。
另外建议使用全路径名(绝对路径),防止启动服务时找不到文件。
运行完命令后在Windows的服务中将出现一个名为Manticore
的服务,启动它。
打开终端运行下面的命令连接MySQL。前提是按照默认的配置,如果使用自己的配置请修改相应的端口。
mysql -P9306 -h 127.0.0.1
或mysql -P9306 -hlocalhost