博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
安装searchd
阅读量:5095 次
发布时间:2019-06-13

本文共 1692 字,大约阅读时间需要 5 分钟。

把安装包解压到 D:coreseek

 

创建表

create table product(id int key auto_increment,title varchar(255),content text);insert into product(title,content) values('苹果电脑1','苹果电脑很好1'),('苹果电脑2','苹果电脑很好2'),('苹果笔记本1','苹果笔记本很好1'),('山西苹果','山西苹果好吃'),('dell电脑','苹果电脑很好1'),('联想电脑1','联想电脑很好1');

配置文件

#源定义 设置数据来源source mysql{    type                    = mysql    sql_host                = localhost    sql_user                = root    sql_pass                =     sql_db                    = system    sql_port                = 3306    sql_query_pre            = SET NAMES utf8    sql_query                = select id,title,content from product}#index定义 设置索引index index1{    source            = mysql                path            = D:/coreseek/var/data/mysql     docinfo            = extern    mlock            = 0    morphology        = none    min_word_len        = 1    html_strip                = 0    charset_dictpath = D:/coreseek/etc/                                charset_type        = zh_cn.utf-8}#全局index定义indexer{    mem_limit            = 128M}#searchd服务定义searchd{    listen                  =   9312    read_timeout        = 5    max_children        = 30    max_matches            = 1000    seamless_rotate        = 0    preopen_indexes        = 0    unlink_old            = 1    pid_file=D:/coreseek/var/log/searchd_mysql.pid    log=D:/coreseek/var/log/searchd_mysql.log    query_log=D:/coreseek/var/log/query_mysql.log}

  

创建索引

D:/coreseek,执行:bin\indexer -c etc\csft_mysql.conf --all

 

安装服务

bin\searchd --install  --config d:/coreseek/etc/csft_mysql.conf

安装成功后命令行窗口会提示"services searchd installed successfully"。

 

删除服务   

sc delete +服务名称

 sc delete searchd

转载于:https://www.cnblogs.com/chenliuxiao/p/9353988.html

你可能感兴趣的文章
剑指offer系列6:数值的整数次方
查看>>
js 过滤敏感词
查看>>
poj2752 Seek the Name, Seek the Fame
查看>>
软件开发和软件测试,我该如何选择?(蜗牛学院)
查看>>
基本封装方法
查看>>
生活大爆炸之何为光速
查看>>
[Typescript] Specify Exact Values with TypeScript’s Literal Types
查看>>
Illustrated C#学习笔记(一)
查看>>
理解oracle中连接和会话
查看>>
Scrapy实战篇(三)之爬取豆瓣电影短评
查看>>
HDU 5510 Bazinga KMP
查看>>
[13年迁移]Firefox下margin-top问题
查看>>
Zookeeper常用命令 (转)
查看>>
Enterprise Library - Data Access Application Block 6.0.1304
查看>>
重构代码 —— 函数即变量(Replace temp with Query)
查看>>
Bootstrap栅格学习
查看>>
程序员的数学
查看>>
聚合与组合
查看>>
洛谷 P2089 烤鸡【DFS递归/10重枚举】
查看>>
我眼中的技术地图
查看>>