上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 40 下一页
摘要: curl -u elastic:elastic -X POST -H 'Content-Type: application/json' "http://192.168.1.134:19200/app_message_all/_delete_by_query?slices=3&wait_for_com 阅读全文
posted @ 2023-07-31 15:07 slnngk 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 环境:OS:Centos 7mongodb:5.0.19 mongodb单机环境下是没有oplog.rs,是否有办法在单机环境下也生成oplog.rs呢,答案是可以的,就是使用单机部署副本集. 1.修改配置文件加上副本集的配置 [root@localhost conf]# more mongo.cn 阅读全文
posted @ 2023-07-28 16:24 slnngk 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 环境:OS:Centos 7mongodb:5.0.19 mongodb创建了视图后会生成system.views,但是没有权限查询 myrepl:PRIMARY> db.system.views.find() Error: error: { "ok" : 0, "errmsg" : "not au 阅读全文
posted @ 2023-07-26 17:21 slnngk 阅读(87) 评论(0) 推荐(0) 编辑
摘要: 环境:OS:CentOS 7DB:5.0.19 机器角色:192.168.1.105:29001 主192.168.1.106:29001 从1192.168.1.107:29001 从2 1.下载相应的版本https://www.mongodb.com/download-center/commun 阅读全文
posted @ 2023-07-26 13:40 slnngk 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 环境: mongodb:4.4.22 1.范围分片: 刚开始没有使用分片,后面写入数据了使用分片在路由服务器上执行: mongos> use admin mongos> sh.shardCollection("db_pushmsg.app_message_nofenpian",{"user_id": 阅读全文
posted @ 2023-07-21 15:22 slnngk 阅读(192) 评论(0) 推荐(0) 编辑
摘要: 环境: OS:Centos 7mongodb:4.4.22 拓扑结构:s1分片(副本集):192.168.1.104:29001 分片服务器1192.168.1.106:29001 分片服务器2192.168.1.107:29001 分片服务器3 s2分片(副本集):192.168.1.104:29 阅读全文
posted @ 2023-07-19 09:14 slnngk 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 环境:Python:3.6.5mongodb:4.4.22192.168.1.104:29001 主节点192.168.1.107:29001 从节点192.168.1.106:29001 仲裁节点 #!/usr/bin/env python #coding=utf-8 import os, jso 阅读全文
posted @ 2023-07-18 11:12 slnngk 阅读(201) 评论(0) 推荐(0) 编辑
摘要: 环境:OS:Centos 7mongodb:4.4.22拓扑结构:192.168.1.107 primary192.168.1.104 secondary新增节点:192.168.1.106 arbiter 说明:mongodb副本集至少保证有3个节点,虽然2个节点的主从也可以运行,但是主坏了,从库 阅读全文
posted @ 2023-07-18 10:22 slnngk 阅读(268) 评论(0) 推荐(0) 编辑
摘要: 环境:OS:Centos 7mongodb:4.4.22拓扑结构:192.168.1.107 primary192.168.1.104 secondary新增节点:192.168.1.108 secondary 说明:mongodb副本集至少保证有3个节点,虽然2个节点的主从也可以运行,但是主坏了, 阅读全文
posted @ 2023-07-18 09:12 slnngk 阅读(317) 评论(0) 推荐(0) 编辑
摘要: 环境: OS:Centos 7 mongodb:4.4.22 1.mongodb删除从节点rs.remove("192.168.1.108:29001") 2.删除仲裁节点,命令与删除从节点一致rs.remove("192.168.1.106:29001"); 3.查看表是否分片 ##有分片 mon 阅读全文
posted @ 2023-07-17 15:57 slnngk 阅读(27) 评论(0) 推荐(0) 编辑
摘要: OS:Centos 7mongodb:4.4.22 当前环境192.168.107 primary192.168.104 secondary192.168.106 arbiter 新添加机器ip为:192.168.1.108 作为从库加入(secondary) 1.解压[root@test soft 阅读全文
posted @ 2023-07-17 15:42 slnngk 阅读(253) 评论(0) 推荐(0) 编辑
摘要: 环境:Os:Centos 7mongodb:4.4.22 调整顺序:从节点-->仲裁节点-->主节点源ip与新ip对应关系(这里只拿修改从库作为例子)192.168.107-->192.168.104 从节点 1.关闭从节点/usr/local/services/mongodb/bin/mongo 阅读全文
posted @ 2023-07-17 10:55 slnngk 阅读(188) 评论(0) 推荐(0) 编辑
摘要: 环境:OS:Centos7mongodb:4.4.22 我们在副本集扩容的情况下,新加入节点一般设置priority和votes都为0,待新节点数据同步完成后再进行修改:主库上执行新增新的节点:myrepl:PRIMARY>rs.add({ host: "192.168.1.107:29001", 阅读全文
posted @ 2023-07-17 09:53 slnngk 阅读(459) 评论(0) 推荐(0) 编辑
摘要: 环境:OS:centos 7mongodb:4.4.22 背景:1主1从1仲裁的环境,修改从库的集群ip后,执行如下操作后发现无法启动myrepl:PRIMARY> rs.remove("192.168.1.104:29001")myrepl:PRIMARY> conf=rs.conf()myrep 阅读全文
posted @ 2023-07-17 09:09 slnngk 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 环境:OS:CentOS 7DB:4.4.22 机器角色:192.168.1.102:29001 主192.168.1.104:29001 从192.168.1.105:29001 仲裁节点 1.下载相应的版本https://www.mongodb.com/download-center/commu 阅读全文
posted @ 2023-07-14 15:33 slnngk 阅读(303) 评论(0) 推荐(0) 编辑
摘要: 环境:OS:Centos 7db:4.4.22 1.查看当前的大小 myrepl:PRIMARY> db.getReplicationInfo() { "logSizeMB" : 10000, "usedMB" : 10013.92, "timeDiff" : 7801, "timeDiffHour 阅读全文
posted @ 2023-07-14 15:15 slnngk 阅读(117) 评论(0) 推荐(0) 编辑
摘要: remove数据后可以使用compact进行空间释放 db.runCommand({"compact" : "app_message_all",force:true}) 说明; 主从都要执行,单独在主库上执行,从库不会释放空间 阅读全文
posted @ 2023-07-14 14:35 slnngk 阅读(269) 评论(0) 推荐(0) 编辑
摘要: 1.修改成静态ip [root@localhost network-scripts]# more ifcfg-enp0s3 TYPE=Ethernet PROXY_METHOD=none BROWSER_ONLY=no BOOTPROTO=static DEFROUTE=yes IPV4_FAILU 阅读全文
posted @ 2023-07-13 16:57 slnngk 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 1.查看topicsh mqadmin topicList -n 192.168.1.104:9876 2.删除topicsh mqadmin deleteTopic -c HOSTNAME -n 192.168.1.104:9876 -t mytest 3.创建topicsh mqadmin up 阅读全文
posted @ 2023-07-13 14:52 slnngk 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 1.下载wget https://archive.apache.org/dist/rocketmq/4.9.4/rocketmq-all-4.9.4-bin-release.zip 2.解压安装[root@host135 soft]# mv rocketmq-all-4.9.4-bin-releas 阅读全文
posted @ 2023-07-06 17:49 slnngk 阅读(303) 评论(0) 推荐(0) 编辑
摘要: 环境:OS:Centos 7es:6.8.5拓扑:3节点的集群 1.下载地址https://github.com/medcl/elasticsearch-analysis-ik下载的版本需要跟es的版本保持一致我这里的es版本是6.8.5的,所以下载相应版本的分词器elasticsearch-ana 阅读全文
posted @ 2023-07-03 14:40 slnngk 阅读(257) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/env python #coding=utf-8 from elasticsearch import Elasticsearch import time import random from elasticsearch import helpers ##es = Elastic 阅读全文
posted @ 2023-06-29 17:39 slnngk 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 环境:OS:Centos 7 1.下载下载地址:https://www.elastic.co/cn/downloads/past-releases#elasticsearch 2.解压缩并创建数据目录[root@localhost soft]# tar -xvf elasticsearch-8.8. 阅读全文
posted @ 2023-06-29 17:16 slnngk 阅读(1422) 评论(0) 推荐(1) 编辑
摘要: ########################被监控的oracle服务器上安装##################1.下载下载地址https://github.com/iamseth/oracledb_exporter#installation oracledb_exporter.tar.gz 二 阅读全文
posted @ 2023-06-28 15:54 slnngk 阅读(424) 评论(0) 推荐(0) 编辑
摘要: 环境: OS:Centos 7 1.下载下载地址https://gitcode.net/mirrors/lmenezes/cerebro?utm_source=csdn_github_accelerator 我这里下载的是cerebro-0.9.4.tgz 2.解压安装[root@host134 s 阅读全文
posted @ 2023-06-28 09:40 slnngk 阅读(422) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 40 下一页