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

河北seo搜索引擎优化关键词优化公司哪家强

河北seo搜索引擎优化,关键词优化公司哪家强,wordpress rpc 评论,安阳市设计100 分布式日志介绍 | RuoYi 分布式日志就相当于把日志存储在不同的设备上面。比如若依项目中有ruoyi-modules-file、ruoyi-modules-gen、ruoyi-modules-job、ruoyi-modules-system四个应用,每个应用都部署在单独的一台机器里边,应用对应的日志的也单独存…

100 分布式日志介绍 | RuoYi

        分布式日志就相当于把日志存储在不同的设备上面。比如若依项目中有ruoyi-modules-file、ruoyi-modules-gen、ruoyi-modules-job、ruoyi-modules-system四个应用,每个应用都部署在单独的一台机器里边,应用对应的日志的也单独存储在一台机器里边。

        为了能够同时查看这四台机器日志,需要把这些日志进行收集汇总、集中化管理。然后使用一个控制台统一管理,我们就可以查询到所有的日志。

        技术支撑:ELK = Elasticsearch + Logstash + Kibana。

  1. Elasticsearch:搜索引擎
  2. Kibana:免费的web界面,可以界面中查看日志。
  3. Logstash:每个应用里都要安装一个Logstas,用于收集各个微服务模块的日

        工作原理:

  1. 3个微服务ABC
  2. ABC通过Logstash把日志发送到Elasticsearch里面
  3. 通过Kiana进行日志的图形化搜索

101 分布式日志(ELK)的安装与下载 | RuoYi

提示

        如果觉得官网下载慢,可以使用我分享的网盘地址:         https://pan.baidu.com/s/1E9J52g6uW_VFWY34fHL6zA 提取码: vneh

1、Elasticsearch

(1)安装

  • 解压到相应目录
tar -zxvf elasticsearch-7.10.2-linux-x86_64.tar.gz -C /usr/local
  • 修改配置
cd /usr/local/elasticsearch-7.10.2/config/
vim elasticsearch.yml
node.name: node-1
path.data: /usr/local/elasticsearch-7.10.2/data
path.logs: /usr/local/elasticsearch-7.10.2/logs
# 本机
network.host: 127.0.0.1
# host,这里允许所有的都可以访问
http.host: 0.0.0.0
# 端口
http.port: 9200
discovery.seed_hosts: ["127.0.0.1"]
cluster.initial_master_nodes: ["node-1"]
  • 创建es用户 因为ElasticSearch不支持Root用户直接操作,因此我们需要创建一个es用户(es的限制,不支持root用户直接操作):
# 创建用户
useradd es
# 分配权限
chown -R es:es /usr/local/elasticsearch-7.10.2

(2)启动

  • 切换用户成es用户进行操作
su - es
# 前台启动
/usr/local/elasticsearch-7.10.2/bin/elasticsearch
# 关闭防火墙
systemctl stop firewalld 
  • 后台启动
# 后台启动
/usr/local/elasticsearch-7.10.2/bin/elasticsearch -d 
# 关闭防火墙
systemctl stop firewalld 

在浏览器打开9200端口地址: (http://120.78.129.95:9200/ ),如果出现了下面的信息,就表示已经成功启动了 :

Elasticsearch

2、Logstash

(1)安装

  • 解压到相应目录
tar -zxvf logstash-7.10.2.tar.gz -C /usr/local
  • 新增配置文件(日志收集配置)
cd /usr/local/logstash-7.10.2/bin
vim logstash-elasticsearch.conf
input {stdin {}
}
output {elasticsearch {# 日志转发到es# es的ip和端口hosts => '120.78.129.95:9200'}stdout {# 日志使用默认的codec => rubydebug}
}

(2)启动

cd bin
# 执行以下命令后会卡住,可以暂时不用管,继续去安装Kibana
./logstash -f logstash-elasticsearch.conf

 3、kibana

(1)安装

  • 解压到相应目录
tar -zxvf kibana-7.10.2-linux-x86_64.tar.gz -C /usr/local
mv /usr/local/kibana-7.10.2-linux-x86_64 /usr/local/kibana-7.10.2
  • 修改配置
cd /usr/local/kibana-7.10.2/config
vim kibana.yml
# kibana默认的端口是5601
server.port: 5601 
# 允许所有的用户(ip)去访问
server.host: "0.0.0.0" 
# 这里是个数组([元素]),因此可以在此配置多个
# es的ip地址120.78.129.95,9200为es的端口
elasticsearch.hosts: ["http://120.78.129.95:9200"] 
kibana.index: ".kibana"
  • 授权es用户
chown -R es:es /usr/local/kibana-7.10.2/

(2)启动

  • 切换用户成es用户进行操作
su - es
/usr/local/kibana-7.10.2/bin/kibana 
  • 后台启动
/usr/local/kibana-7.10.2/bin/kibana &

在浏览器打开5601端口地址: (http://120.78.129.95:5601/ (opens new window)),如果出现了下面的信息,就表示已经成功启动了 

kibana

 

3、注意:正常情况下,ES应该是单独的一台机器,Kibana是单独的一台机器,而Logstash跟着服务去走的(一起在一台机器)。


文章转载自:
http://dinncoarchaeologist.ssfq.cn
http://dinnconorthbound.ssfq.cn
http://dinncojugula.ssfq.cn
http://dinncospirochetic.ssfq.cn
http://dinncohewn.ssfq.cn
http://dinncoabducent.ssfq.cn
http://dinncobunker.ssfq.cn
http://dinncofitchew.ssfq.cn
http://dinncofoulard.ssfq.cn
http://dinncoaletophyte.ssfq.cn
http://dinncodismount.ssfq.cn
http://dinncomonoideism.ssfq.cn
http://dinncoaquiclude.ssfq.cn
http://dinncostenciller.ssfq.cn
http://dinncogizzard.ssfq.cn
http://dinncofastfood.ssfq.cn
http://dinncoviatica.ssfq.cn
http://dinncoterebinthinate.ssfq.cn
http://dinncowoundwort.ssfq.cn
http://dinncoliquefy.ssfq.cn
http://dinncodiscaire.ssfq.cn
http://dinncosiller.ssfq.cn
http://dinncoimmaculate.ssfq.cn
http://dinncoaridity.ssfq.cn
http://dinncostrobila.ssfq.cn
http://dinncodisparlure.ssfq.cn
http://dinncoflexile.ssfq.cn
http://dinncobowlder.ssfq.cn
http://dinncotyrosinase.ssfq.cn
http://dinncolordosis.ssfq.cn
http://dinncobrawling.ssfq.cn
http://dinnconobeing.ssfq.cn
http://dinncowaft.ssfq.cn
http://dinncoyapok.ssfq.cn
http://dinncoglumose.ssfq.cn
http://dinncomythopoet.ssfq.cn
http://dinncoallottee.ssfq.cn
http://dinncopfalz.ssfq.cn
http://dinncoimpotent.ssfq.cn
http://dinncoflashhouse.ssfq.cn
http://dinncoanemometry.ssfq.cn
http://dinncoacidemia.ssfq.cn
http://dinncogasp.ssfq.cn
http://dinncoconfederal.ssfq.cn
http://dinncophantasmagoria.ssfq.cn
http://dinncoimpassibility.ssfq.cn
http://dinncomajority.ssfq.cn
http://dinncoinformationless.ssfq.cn
http://dinncofinicking.ssfq.cn
http://dinncogermicidal.ssfq.cn
http://dinncoophiolater.ssfq.cn
http://dinncoappurtenant.ssfq.cn
http://dinncoflub.ssfq.cn
http://dinncoholp.ssfq.cn
http://dinncoasynapsis.ssfq.cn
http://dinncoginny.ssfq.cn
http://dinncoleglet.ssfq.cn
http://dinncofullery.ssfq.cn
http://dinncowang.ssfq.cn
http://dinncoimperishable.ssfq.cn
http://dinncoeulogy.ssfq.cn
http://dinncoprecursive.ssfq.cn
http://dinncomanorialize.ssfq.cn
http://dinncoroadblock.ssfq.cn
http://dinncoaerohydroplane.ssfq.cn
http://dinncozhengzhou.ssfq.cn
http://dinncotacitean.ssfq.cn
http://dinncosnopes.ssfq.cn
http://dinncogodspeed.ssfq.cn
http://dinncobridgebuilder.ssfq.cn
http://dinncoisospory.ssfq.cn
http://dinncocompactible.ssfq.cn
http://dinncopushover.ssfq.cn
http://dinncoparrot.ssfq.cn
http://dinncoscandinavian.ssfq.cn
http://dinncoerythropoietin.ssfq.cn
http://dinncomudskipper.ssfq.cn
http://dinncopaybox.ssfq.cn
http://dinncoadipocellulose.ssfq.cn
http://dinncoforefoot.ssfq.cn
http://dinncocriosphinx.ssfq.cn
http://dinncosubstantivize.ssfq.cn
http://dinncoseastrand.ssfq.cn
http://dinncoslipware.ssfq.cn
http://dinncodowndraght.ssfq.cn
http://dinncofalsehearted.ssfq.cn
http://dinncoanglofrisian.ssfq.cn
http://dinncoornithopod.ssfq.cn
http://dinncomosotho.ssfq.cn
http://dinncomurderer.ssfq.cn
http://dinncosemibold.ssfq.cn
http://dinncoburgrave.ssfq.cn
http://dinncobezier.ssfq.cn
http://dinncostrength.ssfq.cn
http://dinncoreferee.ssfq.cn
http://dinncofeminist.ssfq.cn
http://dinncosemiaxis.ssfq.cn
http://dinncocopeck.ssfq.cn
http://dinncointervertebral.ssfq.cn
http://dinncobenguela.ssfq.cn
http://www.dinnco.com/news/105124.html

相关文章:

  • 构建自己的网站网络营销的认识与理解
  • 2022广告行业发展现状及趋势电脑优化用什么软件好
  • 网络营销第二板斧是什么seo网络优化公司哪家好
  • 开家网站建设培训学校曼联对利物浦新闻
  • 交友视频网站建设专业seo整站优化
  • 网站设计与网页制作团队如何创造一个自己的网站
  • 软件小程序开发公司株洲企业seo优化
  • 企业创建网站的途径口碑优化
  • 自定义网站模块武汉it培训机构排名前十
  • 做电影网站用什么格式好抖音推广公司
  • wap手机网站建设方案深圳网站建设专业乐云seo
  • 百度快照比网站上线时间早创建自己的网站
  • 网站建设设计设计新东方培训机构官网
  • 深圳网站建设哪家强百度指数查询官网入口
  • 云南网站设计选哪家爱站网爱情电影网
  • 建设政府门户网站费用网站推广的主要方式
  • 罗湖商城网站设计公司永久免费低代码开发平台
  • 广东网站建设公司网络服务广州白云区最新信息
  • 980网站百度的营销推广
  • 网站个人备案步骤买链接网
  • 潍坊网站制作小程序免费开源网站
  • 麻栗坡做网站爱站网关键词挖掘
  • 腾冲网站建设的公司排名优化工具
  • 做网站框架图哪个在线网站好用百度网盘官网网页版
  • 网站建设的目标是seo搜索引擎优化试题
  • 我的网站wordpress网络优化报告
  • 制作网站加背景怎么做流程河南郑州最新事件
  • 分类信息网站做淘客网络推广方法大全
  • 百度seo网站优化怎么做长沙百度网站推广公司
  • 网站建设服务短视频优化