美文网首页
利用 SeraX 搭建私人搜索引擎

利用 SeraX 搭建私人搜索引擎

作者: 风果 | 来源:发表于2019-03-20 14:29 被阅读0次

    转自https://www.toutiao.com/i6668156148627014156/?tt_from=mobile_qq&utm_campaign=client_share&timestamp=1553062791&app=news_article&utm_source=mobile_qq&utm_medium=toutiao_android&group_id=6668156148627014156

    百度广告那么多,我们能不能自己搭建个搜索引擎使用呢?答案是肯定的,searX

    正是一个基于 Python 的完全开源免费的搜索引擎平台,它开源为你提供来自于 Google、Bing、Yahoo

    等网站结果展示,而且会对搜索结果进行优化,同时不会存储你的任何搜索信息,搭建也非常的简单方便。

    本地搭建演示使用的是 Debian 9 ,命令如下:

    切换root账户:sudo -i

    更新软件包:apt-get -y update

    安装pip:apt-get -y install python-pip

    安装git:apt-get -y install git

    拉去searX源码:git clone https://github.com/asciimoo/searx.git

    编辑searX配置:vi searx/settings.yml

    此时已经安装完成并进入到 searX 的配置中,我们在 server 内的 bind_address 后面双引号内的 ip 地址改为 0.0.0.0 ,然后并保存退出。

    运行 searX 并在保持在后台运行,命令如下:

    安装screen:apt-get install screen -y

    后台运行:screen -dmS searx python searx/webapp.py

    服务默认端口是 8888 ,如果未在配置文件中修改过的话,此时则可以访问 ip:8888 进行访问,此时 searX 可以正常使用了。

    项目地址:https://github.com/asciimoo/searx

    相关文章

      网友评论

          本文标题:利用 SeraX 搭建私人搜索引擎

          本文链接:https://www.haomeiwen.com/subject/wuizmqtx.html