2022年6月11日
摘要:
1.pom 导入jar <dependency> <groupId>org.elasticsearch.client</groupId> <artifactId>elasticsearch-rest-high-level-client</artifactId> <version>7.17.4</ve
阅读全文
posted @ 2022-06-11 15:17
oktokeep
阅读(148)
推荐(0)
摘要:
1.下载,解压缩,命令行前不要留空格 官网下载地址: https://www.elastic.co/cn/downloads/elasticsearch https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-8.2.2-
阅读全文
posted @ 2022-06-11 14:34
oktokeep
阅读(1310)
推荐(0)
摘要:
1.exchange类型,rabbitmq交换机类型 exchange类型fanout 扇形交换机,它会把所有发送到该交换机的消息路由到所有与该交换机绑定的队列中。direct 直连交换机,它会把消息路由到那些BindingKey和RoutingKey完全匹配的队列中。topic 主题交换机,与di
阅读全文
posted @ 2022-06-11 14:11
oktokeep
阅读(464)
推荐(0)
2022年6月10日
摘要:
windows rabbitmq安装1.环境变量,关键是rabbitmq_server需要与erlang版本对应,否则无法使用。 rabbitmq下载页https://github.com/rabbitmq/rabbitmq-server/releases 选择下载:rabbitmq-server-
阅读全文
posted @ 2022-06-10 13:56
oktokeep
阅读(251)
推荐(0)
摘要:
#创建索引songs_v1 PUT { - "acknowledged": true, "shards_acknowledged": true, "index": "songs_v1"} #创建映射 高版本的没有type,可以使用默认的_doc,避免不同的type之间存在相同的字段名,但是字段类型不
阅读全文
posted @ 2022-06-10 08:54
oktokeep
阅读(159)
推荐(0)
摘要:
[root@VM-4-3-centos local]# ps aux --sort -rss | head USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND mysql 21247 0.0 9.6 1191444 182252 ? Sl 1
阅读全文
posted @ 2022-06-10 08:47
oktokeep
阅读(178)
推荐(0)
摘要:
-bash: curl: command not found rpm -e --nodeps curl yum remove curl rpm -qa|grep curl yum -y install curl curl --version
阅读全文
posted @ 2022-06-10 08:41
oktokeep
阅读(1205)
推荐(0)
摘要:
1.下载,上传安装包,解压缩tar -zxvf kibana-8.2.0-linux-x86_64.tar.gz cd kibana-8.2.0 2.修改配置文件vi config/kibana.ymlserver.host: "127.0.0.1" #本机ipelasticsearch.url:
阅读全文
posted @ 2022-06-10 08:36
oktokeep
阅读(465)
推荐(0)
摘要:
1.导入pom jar文件 <dependency> <groupId>org.apache.lucene</groupId> <artifactId>lucene-core</artifactId> <version>8.11.1</version> </dependency> <dependen
阅读全文
posted @ 2022-06-10 08:23
oktokeep
阅读(163)
推荐(0)
摘要:
1.Nexus官网:https://www.sonatype.com/download-oss-sonatype 2.环境变量NEXUS_HOME = D:\nexus-3.20.1-01-win64\nexus-3.20.1-01path = %NEXUS_HOME%\bin 3.修改配置文件-X
阅读全文
posted @ 2022-06-10 08:17
oktokeep
阅读(1170)
推荐(0)