摘要:
https://kubernetes.io/docs/concepts/cluster-administration/addons/ 阅读全文
摘要:
脚本 #!/bin/bashLAST_DATA=`date -d "-90 days" "+%Y-%m-%d"`USERNAME='elastic'PASSWORD='esDB%hbe'URL="http://47.94.105.109:9200"#curl -XDELETE --user ${US 阅读全文
摘要:
https://blog.csdn.net/androidstarjack/article/details/125532284(虚拟机部署可能出现master无法获取node节点状态,是因为主机名字可能重复,需要设置一下主机名,以下链接仅供参考) https://blog.csdn.net/yhj_ 阅读全文
摘要:
1 参考链接:https://blog.csdn.net/qq_36162696/article/details/129315682 阅读全文
摘要:
redis-5版本的集群安装 1. 5版本往上就不再使用ruby去创建集群了。 2. 具体的创建步骤可以参见下面的博文。https://www.jianshu.com/p/e9eab2f4a564 3. redis集群开机自启: https://www.cnblogs.com/powerwu/art 阅读全文
摘要:
es部署文档 ### 规划 | 内网ip | 浮动ip | 角色 || : | | || 192.168.0.182 | node1 || 192.168.0.184 | node2 || 192.168.0.59 | node3 | ## 步骤 1. 安装jdk 1. 如果不存在,需要安装 2. 阅读全文
摘要:
master: mysqldump -uroot -p --databases perceive >/app/backup/perceive.sql tar -zcvf mysql.tar perceive.sql slave : stop slave;CHANGE MASTER TOMASTER_ 阅读全文
摘要:
update mysql.user set authentication_string=PASSWORD('passwd') where User='root'; flush privileges; 阅读全文