摘要: redis cluster 命令整理如下: [root@localhost bin]# ./redis-cli --cluster helpCluster Manager Commands: create host1:port1 ... hostN:portN --cluster-replicas 阅读全文
posted @ 2025-04-25 10:55 哇塞咔咔 阅读(13) 评论(0) 推荐(0)
摘要: 报错信息:*** Target key exists*** Checking key values on both nodes...*** Found 1 key(s) in both source node and target node having different values. Sour 阅读全文
posted @ 2025-04-25 10:40 哇塞咔咔 阅读(14) 评论(0) 推荐(0)
摘要: 默认超时时间 http://news.558idc.com/146640.html 阅读全文
posted @ 2023-08-07 11:27 哇塞咔咔 阅读(11) 评论(0) 推荐(0)
摘要: 下图为8.0情况下 5.7情况下,通过重启实例方法,使mysql自动删除了这个文件 阅读全文
posted @ 2023-07-18 11:40 哇塞咔咔 阅读(22) 评论(2) 推荐(0)
摘要: Slave_IO_State: Waiting for master to send event Master_Host: 12.12.12.12 Master_User: slave Master_Port: 3307 Connect_Retry: 60 Master_Log_File: mysq 阅读全文
posted @ 2023-05-10 10:54 哇塞咔咔 阅读(11) 评论(0) 推荐(0)
摘要: 原因是,在最外层的form中使用了 formGroup 指令,但在下面的某个input 插件中,使用了ngModel 指令,但没有加入formControl 指令或 formControlName 属性。 解决方法: 1. 在input元素中添加 formControl 指令或 formContro 阅读全文
posted @ 2022-12-15 10:28 哇塞咔咔 阅读(56) 评论(0) 推荐(0)
摘要: # debug端口CATALINA_OPTS="${CATALINA_OPTS} -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=0.0.0.0:9090" 阅读全文
posted @ 2022-10-27 19:08 哇塞咔咔 阅读(82) 评论(0) 推荐(0)
摘要: java.lang.OutOfMemoryError共有8种类型,其中java.lang.OutOfMemoryError: unable to create new native thread是很常见的一种,这类错误通常发生在应用试图创建新线程时。 可能原因 1. 系统内存耗尽,无法为新线程分配内 阅读全文
posted @ 2022-10-12 16:23 哇塞咔咔 阅读(900) 评论(1) 推荐(0)
摘要: 1、cd /usr/libexec 2、./java_home 阅读全文
posted @ 2022-10-10 15:31 哇塞咔咔 阅读(13) 评论(0) 推荐(0)
摘要: 相信大家一定遇到过,我们开发的Web APP 编译部署上去之后,用户端并未看到更新的程序,需要刷新浏览器才能看到我们新增加的功能。这里,背后的原因就浏览器在背后偷偷地帮我们缓存了一些东西,比如常用的Js,HTML,css。 可见,这确实给我们带来了一点麻烦。解决此问题,网上给出了很多解决方案。但我认 阅读全文
posted @ 2022-10-10 10:44 哇塞咔咔 阅读(321) 评论(0) 推荐(0)