需求: 某个活动需按周或按日重复 1. A活动从 2020-01-01 ~ 2020-05-01 日期间可每天重复参与 2.A活动在 2020-01-01 ~ 2020-05-01 日期间内每 星期一,星期三, 星期日才可参与 实现: 数据记录: begin_date (开始时间) end_date ...
分类:
其他好文 时间:
2020-09-18 03:02:24
阅读次数:
38
一、安装 yum install -y ansible 二、密钥授权 ssh-keygen -t rsa注释:-t type指定要创建的密钥类型。 rsa 加密算法 三、模块介绍(https://www.cnblogs.com/mcsiberiawolf/articles/10056777.html ...
分类:
其他好文 时间:
2020-09-18 02:00:30
阅读次数:
37
·博主是根据b站up主诺十一2020的教程进行的学习~ https://www.bilibili.com/video/BV1V4411W787?p=1 1.对角色的移动做了如下的编码 1 using System.Collections; 2 using System.Collections.Gen ...
分类:
其他好文 时间:
2020-09-18 01:21:38
阅读次数:
29
将管理节点的脚本上传至被管理节点执行,理论上此模块不许需要被管理服务器上有python [root@ceph1 ~]# cat a.sh touch /tmp/ansible-script [root@ceph1 ~]# ansible webservers -m script -a "a.sh" ...
分类:
其他好文 时间:
2020-09-18 01:10:39
阅读次数:
31
官网 [root@ceph1 ~]# cat a.repo [epel] name=Extra Packages for Enterprise Linux 7 - $basearch #baseurl=http://download.fedoraproject.org/pub/epel/7/$bas ...
分类:
其他好文 时间:
2020-09-18 01:09:51
阅读次数:
28
redis 5 之前,可以使用 redis-trib.rb 创建 redis cluster,但是依赖ruby,所以实际并不好用。 或者使用 redis-cli 创建 redis cluster,但是步骤较多,没法一次性完成。 故在github上找了一个使用go写的redis-trib,就不在有依赖 ...
分类:
其他好文 时间:
2020-09-18 00:07:49
阅读次数:
30
ansible运行报错:CryptographyDeprecationWarning,本文旨在解决该问题。
分类:
其他好文 时间:
2020-09-17 22:44:47
阅读次数:
58
内置变量ansible_version获取到ansible的版本号ansibletest70-mdebug-a"msg={{ansible_version}}"内置变量hostvars操作当前主机时获取到其他主机中的信息name:"play1:Gatherfactsoftest71"hosts:test71remote_user:rootname:"
分类:
其他好文 时间:
2020-09-17 17:20:47
阅读次数:
79
通过item和with_items对重复操作进行循环执行示例:hosts:jack6_1remote_user:rootgather_facts:notasks:name:touchfilefile:path:"{{item}}"state:touchwith_items:"a""b""c"在jack6_1主机上创建三
分类:
其他好文 时间:
2020-09-17 17:20:16
阅读次数:
39
with_items遍历列表中每个元素,包括嵌套列表with_list将嵌套列表作为整体元素遍历with_together将多个列表中的子列表元素,一起输出,不成对则null补位示例:hosts:jack6_1remote_user:rootgather_facts:notasks:debug:msg:"{{item}}"with_items:[1,2,3][a,b]debug
分类:
其他好文 时间:
2020-09-17 17:19:57
阅读次数:
31