摘要:
思路:找到cluster id 和 分配的id 启动单点的pd pd-recover修复pd 恢复成pd集群 强制删除多个pd 启动tidb集群 1、pd的日志报错 [root@localhost log]# pwd /tidb-deploy/pd-2379/log [root@localhost 阅读全文
摘要:
OutOfDirectMemoryError是Java中的一种运行时错误,通常发生在使用NIO(非阻塞I/O)或高性能网络编程时。这个错误表明JVM的直接内存已经耗尽。 直接内存(Direct Memory)是指JVM用于NIO操作的内存区域,它不是堆的一部分,而是通过系统调用分配和释放的。默认情况 阅读全文
摘要:
实现收集docker容器日志方式: dokcer安装插件,将日志发送到loki,grafna展示日志。 1、安装loki wget https://raw.githubusercontent.com/grafana/loki/v2.9.1/cmd/loki/loki-local-config.yam 阅读全文
摘要:
select * from dba_data_files; ORA-01116: 打开数据文件3出错 ORA-01110: 数据文件 3: '/home/oracle/dmpfile20200903/test_xfh_db.dbf' ORA-27041: 无法打开文件 Linux-x86_64 Er 阅读全文
摘要:
1、安装es 注意:关闭xpack.security.enabled: false 权限认证 允许跨域 http.cors.enabled: true http.cors.allow-origin: "* https://blog.csdn.net/qq_40739917/article/detai 阅读全文
摘要:
1、错误:xxl-job调用https接口显示证书验证失败 [错误信息:sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBu 阅读全文
摘要:
```bash命令及sql查看#tidb热点regins查看select * from information_schema.tidb_hot_regions where REGION_ID='121930461';select * from information_schema.TIKV_REGI 阅读全文
摘要:
1、官网下载elasticsearch_exporter的安装包,地址如下:```bashhttps://github.com/prometheus-community/elasticsearch_exporter```2、配置成服务```bashvim /etc/systemd/system/el 阅读全文
摘要:
1、添加表的中文说明 #添加表中文说明 COMMENT ON TABLE TEST.EMPLOYEE IS '员工表'; #查看说明 select * from dba_tab_comments; 2、表字段添加说明 #表字段添加说明 COMMENT ON COLUMN TEST.EMPLOYEE. 阅读全文
摘要:
介绍 ElasticView 是一款用来监控ElasticSearch状态和操作ElasticSearch索引的web可视化工具。它由golang开发而成,具有部署方便,占用内存小等优点,官网地址:http://www.elastic-view.cn ElasticSearch连接树管理(更方便的切 阅读全文