10 2022 档案
摘要:早上收到预警,mysql 发生了自动重启,查看mysql.log并没有发现异常,于是查看了一下/var/log/syslog,发现了以下日志 将自动更新服务停止 sudo apt-get remove unattended-upgrades sudo systemctl stop apt-daily
阅读全文
摘要:参考官方文档:https://www.mongodb.com/docs/manual/tutorial/install-mongodb-on-ubuntu-tarball/ sudo apt-get install libcurl4 openssl liblzma5 tar -zxvf mongod
阅读全文
摘要:参考文档:https://blog.csdn.net/zlt2000/article/details/115291950 一、ETL接口 adapter 的 ETL 接口为:/etl/{type}/{task} 默认web端口为 8081 type 为类型(hbase/es7/rdb) task 为
阅读全文
摘要:1、mysql查看binlog mysql> show binlog events; #只查看第一个binlog文件的内容 mysql> show binlog events ``in 'mysql-bin.000002'``;#查看指定binlog文件的内容 mysql> show binary
阅读全文
摘要:创建索引,user为索引名称 PUT http://192.168.0.110:9200/user 查询索引基本信息 GET http://192.168.0.110:9200/user 查询所有索引 GET http://192.168.0.110:9200/_cat/indices? 删除索引
阅读全文