随笔分类 -  Linux

1 2 3 4 5 ··· 7 下一页
摘要:如何是要看jar包里面的class文件 可以直接使用arthas的jad命令 具体可以参考:https://www.cnblogs.com/pxblog/p/17679797.html 但是这个我找了下 没办法查看resources下的配置文件内容 所以这里整理了一个可以用的方法 最直接办法的 ja 阅读全文
posted @ 2024-12-01 16:44 yvioo 阅读(15) 评论(0) 推荐(0) 编辑
摘要:修改某一个索引前缀的副本数量 PUT /索引名 或者索引前缀-*/_settings { "index": { "number_of_replicas": 1 } } 修改所有的索引副本 PUT /_all/_settings { "index": { "number_of_replicas": 1 阅读全文
posted @ 2024-10-16 19:41 yvioo 阅读(30) 评论(0) 推荐(0) 编辑
摘要:设置密码 重置密码报错: ERROR: Failed to reset password for the [elastic] user 修改配置文件 /config/elasticsearch.yml 修改或添加 network.host: 0.0.0.0 上面这个配置表示允许其他机器访问 disc 阅读全文
posted @ 2024-07-26 09:41 yvioo 阅读(1605) 评论(0) 推荐(0) 编辑
摘要:因为需要依赖gcc高版本 但是目前服务器版本是4.8.5的 然后服务器又是内网 所以只能离线升级gcc 分别下载 https://ftp.gnu.org/gnu/gcc/gcc-8.3.0/gcc-8.3.0.tar.gz https://ftp.gnu.org/pub/gnu/gmp/gmp-6. 阅读全文
posted @ 2024-06-19 14:30 yvioo 阅读(135) 评论(0) 推荐(0) 编辑
摘要:下载包 官网地址:https://cmake.org/download/ 官网比较慢,所以我传了一份 :https://yvioo.lanzn.com/i7mYf2270b7a 下载下来之后 传到服务器上 然后解压 tar -zxf cmake-3.30.0-rc3-linux-x86_64.tar 阅读全文
posted @ 2024-06-19 10:36 yvioo 阅读(230) 评论(0) 推荐(0) 编辑
摘要:例如我们要从192.168.1.12:9200数据迁移到192.168.1.34:9200中 先做192.168.1.34这个服务器的es配置文件中 conf/elasticsearch.yml增加配置 下面配置的源ip根据自己的来 reindex.remote.whitelist: "192.16 阅读全文
posted @ 2023-12-21 14:59 yvioo 阅读(455) 评论(0) 推荐(0) 编辑
摘要:2023-08-01 21:02:09,923 FATAL [main] ipc.AbstractRpcClient: SASL authentication failed. The most likely cause is missing or invalid credentials. Consi 阅读全文
posted @ 2023-08-02 14:33 yvioo 阅读(156) 评论(0) 推荐(0) 编辑
摘要:这个命令可以在我们服务器没有telnet命令的时候使用 nc -vz -w 10 ip 端口 如果没有 有curl命令也可以使用 curl -v telnet://ip:port 阅读全文
posted @ 2023-06-12 15:00 yvioo 阅读(129) 评论(0) 推荐(0) 编辑
摘要:执行sql select pg_terminate_backend(pid) from (select pid from pg_stat_activity where datname = '数据库名称' ) a; 然后再次执行删库就可以了 阅读全文
posted @ 2023-05-15 09:51 yvioo 阅读(219) 评论(0) 推荐(0) 编辑
摘要:grep '2023-02-08 00:[1-6]0' logs/nohup.log 这是查找2023-02-08的00点10分到00点60分的日志数据 阅读全文
posted @ 2023-02-08 21:07 yvioo 阅读(745) 评论(0) 推荐(0) 编辑
摘要:已加载插件:fastestmirror, langpacks One of the configured repositories failed (未知), and yum doesn't have enough cached data to continue. At this point the 阅读全文
posted @ 2022-12-18 16:31 yvioo 阅读(447) 评论(0) 推荐(0) 编辑
摘要:-- Unit docker-storage-setup.service has begun starting up.Dec 10 09:11:52 localhost.localdomain sh[11601]: Cannot connect to the Docker daemon at uni 阅读全文
posted @ 2022-12-11 01:17 yvioo 阅读(130) 评论(0) 推荐(0) 编辑

1 2 3 4 5 ··· 7 下一页