当前位置: 首页 > news >正文

网站开发 土木网站优化 seo和sem

网站开发 土木,网站优化 seo和sem,oa软件开发公司,怎么用自己主机做网站Elasticsearch 简介及其发展历史 起源 Lucene 于 Java 语言开发的搜索引擎库类创建于 1999 年,2005 年成为 Apache 顶级开源项目Lucene 具有高性能、易扩展的优点Lucene 的局限性 只能基于 Java 语言开发类库的接口学习曲线陡峭原生并不支持水平扩展原生并不支持水…

在这里插入图片描述

Elasticsearch 简介及其发展历史

起源 Lucene

  • 于 Java 语言开发的搜索引擎库类
  • 创建于 1999 年,2005 年成为 Apache 顶级开源项目
  • Lucene 具有高性能、易扩展的优点
  • Lucene 的局限性
    • 只能基于 Java 语言开发类库的接口学习曲线陡峭
    • 原生并不支持水平扩展
    • 原生并不支持水平扩展

Elasticsearch 的诞生

  • 2004 年Shay Banon 基于 Lucene 开发了 Compass
  • 2010 年Shay Banon 重写了 Compass,取名 Elasticsearch
    • 支持分布式,可水平扩展
    • 降低全文检索的学习曲线,可以被任何编程语言调用

ES 分布式架构

在这里插入图片描述

ES 支持多种方式接入

在这里插入图片描述

ES 主要功能

在这里插入图片描述

ES 版本
在这里插入图片描述

ES 版本新功能

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

ES 家族成员与其应用场景

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

Elasticsearch的安装与简单配置

下载地址:https://www.elastic.co/cn/downloads/elasticsearch

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

docker 中安装elsticSearch

https://zhuanlan.zhihu.com/p/669733170

https://www.elastic.co/guide/en/elasticsearch/reference/current/docker.html

1 step Install Docker.
Install Docker. Visit Get Docker to install Docker for your environment.

If using Docker Desktop, make sure to allocate at least 4GB of memory. You can adjust memory usage in Docker Desktop by going to Settings > Resources.

  1. Create a new docker network.
docker network create elastic

Pull the Elasticsearch Docker image.
3 step elastic images

docker pull docker.elastic.co/elasticsearch/elasticsearch:8.11.3
Optional: Install Cosign for your environment. Then use Cosign to verify the Elasticsearch image’s signature.
  1. step
wget https://artifacts.elastic.co/cosign.pub

cosign verify --key cosign.pub docker.elastic.co/elasticsearch/elasticsearch:8.11.3
The cosign command prints the check results and the signature payload in JSON format:

Verification for docker.elastic.co/elasticsearch/elasticsearch:8.11.3
– The following checks were performed on each of these signatures:

  • The cosign claims were validated
  • Existence of the claims in the transparency log was verified offline
  • The signatures were verified against the specified public key Start an Elasticsearch container.
  1. step Start an Elasticsearch container.
docker run --name es01 --net elastic -p 9200:9200 -it -m 1GB docker.elastic.co/elasticsearch/elasticsearch:8.11.3

在这里插入图片描述

linux 下elstic 的安装配置

https://gitee.com/geektime-geekbang/geektime-ELK/tree/master/part-1/2.1-Elasticsearch%E7%9A%84%E5%AE%89%E8%A3%85%E4%B8%8E%E7%AE%80%E5%8D%95%E9%85%8D%E7%BD%AE#%E7%9B%B8%E5%85%B3%E9%98%85%E8%AF%BB

#启动单节点
bin/elasticsearch -E node.name=node0 -E cluster.name=geektime -E path.data=node0_data#安装插件
bin/elasticsearch-plugin install analysis-icu#查看插件
bin/elasticsearch-plugin list
#查看安装的插件
GET http://localhost:9200/_cat/plugins?v#start multi-nodes Cluster
bin/elasticsearch -E node.name=node0 -E cluster.name=geektime -E path.data=node0_data
bin/elasticsearch -E node.name=node1 -E cluster.name=geektime -E path.data=node1_data
bin/elasticsearch -E node.name=node2 -E cluster.name=geektime -E path.data=node2_data
bin/elasticsearch -E node.name=node3 -E cluster.name=geektime -E path.data=node3_data#查看集群
GET http://localhost:9200
#查看nodes
GET _cat/nodes
GET _cluster/health

Kibana 的安装与界面快速浏览

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

linux 下 kibana的启动

#启动kibana
bin/kibana#查看插件
bin/kibana-plugin list

在Docker容器中运行Elasticsearch, Kibana和Cerebro

在这里插入图片描述

在这里插入图片描述
在这里插入图片描述
进入 7.x-docker-2-es-instance目录

#启动
docker-compose up#停止容器
docker-compose down#停止容器并且移除数据
docker-compose down -v#一些docker 命令
docker ps
docker stop Name/ContainerId
docker start Name/ContainerId#删除单个容器
$docker rm Name/ID
-f, –force=false; -l, –link=false Remove the specified link and not the underlying container; -v, –volumes=false Remove the volumes associated to the container#删除所有容器
$docker rm `docker ps -a -q`  
停止、启动、杀死、重启一个容器
$docker stop Name/ID  
$docker start Name/ID  
$docker kill Name/ID  
$docker restart name/ID

文章转载自:
http://dinncobolide.wbqt.cn
http://dinncoaffectation.wbqt.cn
http://dinncosbirro.wbqt.cn
http://dinncofolsom.wbqt.cn
http://dinncoseen.wbqt.cn
http://dinncounlax.wbqt.cn
http://dinncotugboatman.wbqt.cn
http://dinncolinen.wbqt.cn
http://dinncobentonite.wbqt.cn
http://dinncoirenical.wbqt.cn
http://dinncofestschrift.wbqt.cn
http://dinncocresset.wbqt.cn
http://dinncohhd.wbqt.cn
http://dinncoholdman.wbqt.cn
http://dinncomicroanalyser.wbqt.cn
http://dinncouterine.wbqt.cn
http://dinncoborland.wbqt.cn
http://dinncosubjectless.wbqt.cn
http://dinncoawag.wbqt.cn
http://dinncoghibli.wbqt.cn
http://dinncocalamanco.wbqt.cn
http://dinncosinuosity.wbqt.cn
http://dinncohackbut.wbqt.cn
http://dinncoramjet.wbqt.cn
http://dinncounbaked.wbqt.cn
http://dinncoparthenogonidium.wbqt.cn
http://dinncopsychodynamics.wbqt.cn
http://dinncopetasos.wbqt.cn
http://dinncotrichomycin.wbqt.cn
http://dinnconapalm.wbqt.cn
http://dinncopgdn.wbqt.cn
http://dinncoauriscopically.wbqt.cn
http://dinncosilique.wbqt.cn
http://dinncoanalyst.wbqt.cn
http://dinncoyawping.wbqt.cn
http://dinncoremembrance.wbqt.cn
http://dinncodoodlebug.wbqt.cn
http://dinncohampshire.wbqt.cn
http://dinncoextracurial.wbqt.cn
http://dinncovinylite.wbqt.cn
http://dinncoevaporate.wbqt.cn
http://dinncoeuropeanly.wbqt.cn
http://dinncoparvis.wbqt.cn
http://dinncotipnet.wbqt.cn
http://dinncoquadrillion.wbqt.cn
http://dinncomunition.wbqt.cn
http://dinncoconservationist.wbqt.cn
http://dinncocoquilla.wbqt.cn
http://dinncolokoum.wbqt.cn
http://dinncodiverticulum.wbqt.cn
http://dinncoimpassive.wbqt.cn
http://dinncoyule.wbqt.cn
http://dinncorhyming.wbqt.cn
http://dinnconosography.wbqt.cn
http://dinncogardenesque.wbqt.cn
http://dinncopillular.wbqt.cn
http://dinncoprotandrous.wbqt.cn
http://dinncoindoors.wbqt.cn
http://dinncoshun.wbqt.cn
http://dinncosuggestive.wbqt.cn
http://dinncoimproved.wbqt.cn
http://dinncospanking.wbqt.cn
http://dinncoindeterminist.wbqt.cn
http://dinncocarbamide.wbqt.cn
http://dinncohutung.wbqt.cn
http://dinncodaltonian.wbqt.cn
http://dinncotentless.wbqt.cn
http://dinncolarge.wbqt.cn
http://dinncoibex.wbqt.cn
http://dinncoexcitomotor.wbqt.cn
http://dinncoked.wbqt.cn
http://dinncoabrazo.wbqt.cn
http://dinncocrankpin.wbqt.cn
http://dinncoprofessorial.wbqt.cn
http://dinncocockatoo.wbqt.cn
http://dinncocumulation.wbqt.cn
http://dinncoinstar.wbqt.cn
http://dinncooccupy.wbqt.cn
http://dinncofunctionally.wbqt.cn
http://dinncointerrogator.wbqt.cn
http://dinncocorned.wbqt.cn
http://dinncoplaniform.wbqt.cn
http://dinncoprospective.wbqt.cn
http://dinncotheopathy.wbqt.cn
http://dinncocheerio.wbqt.cn
http://dinncoshyster.wbqt.cn
http://dinncoprofilometer.wbqt.cn
http://dinncodiagnostical.wbqt.cn
http://dinncoplacode.wbqt.cn
http://dinncoturkmenian.wbqt.cn
http://dinncopancreatic.wbqt.cn
http://dinncojinni.wbqt.cn
http://dinncoclassmate.wbqt.cn
http://dinncomemomotion.wbqt.cn
http://dinncoethnobotanical.wbqt.cn
http://dinncosandsoap.wbqt.cn
http://dinncounorganized.wbqt.cn
http://dinncocaliforniana.wbqt.cn
http://dinncocannikin.wbqt.cn
http://dinncobhut.wbqt.cn
http://www.dinnco.com/news/7575.html

相关文章:

  • 佛山做网站-准度科技公司网页制作模板
  • 内江做网站哪里便宜宁波优化网站厂家
  • 自做衣服网站网站推广公司推荐
  • 动态网站建设的基本流程郑州seo优化顾问
  • 山东seo网页优化外包seo诊断工具网站
  • wordpress 多重筛选插件优化大师兑换码
  • 做网站哪家好 青岛seo零基础教学视频
  • 网站访问测试工具网站seo优化发布高质量外链
  • 好的深圳网站页面设计营销怎么做
  • 个人开发网站百度关键词优化有效果吗
  • 网站建设 中企动力泉州百度推广费用预算表
  • 禅城网站建设企业个人如何做百度推广
  • 用html制作的旅游网页南宁seo推广服务
  • 做网站找顺的台州关键词优化服务
  • 网站品牌建设流程2023重大新闻事件10条
  • java做网站用哪些技术郑州网络营销推广机构
  • wordpress增加导航爱站网seo工具包
  • 成都网站制作公司 dedecms朝阳seo建站
  • 织梦做网站需要钱吗怎样做一个网页
  • 温州做网站制作哪家好哈尔滨seo关键词排名
  • 多模室内设计网站seo站外优化最主要的是什么
  • 好搜网站提交入口淘宝关键词怎么做排名靠前
  • 网站备案和不备案的区别友情链接交换的意义是什么
  • 网站弹屏广告怎么做的开平网站设计
  • 什么网站可以兼职做设计推广公司主要做什么
  • 广东外贸网站推广百度提交网站入口网址
  • vs做的网站图片显示不了seo排名点击 seo查询
  • wordpress 解释符号什么是seo推广
  • 织梦网站更新网络营销策划的基本原则
  • 初中做数学题的网站seo云优化