Centos7.5 ansible执行命令报错 问题: [root@m01 ~]# ansible servers -a "hostname" [WARNING]: provided hosts list is empty, only localhost is available. Note that the implicit localhost does not match 'all' [WARNING]: Could not match supplied host pattern,…
使用wget命令 wget http://www.monkey.org/~provos/libevent-1.2.tar.gz 报如下错 error:certificate common name "monkey.org" doesn't match requested host name "www.monkey.org" 可使用curl命令 curl -O -L http://www.monkey.org/~provos/libevent-1.2.tar.gz 就…
通过wget下载文件,报错 [root@Redmine-186 opt]# wget https://cache.ruby-lang.org/pub/ruby/2.3/ruby-2.3.6.tar.gz --2018-01-05 13:54:12-- https://cache.ruby-lang.org/pub/ruby/2.3/ruby-2.3.6.tar.gz Resolving cache.ruby-lang.org... 151.101.229.178, 2a04:4e42:36::4…
1:问题现象: hlp@hlp:~/code/github_code/catch_imooc1$ git push origin master Warning: Permanently added the RSA host key for IP address '13.250.177.223' to the list of known hosts. Everything up-to-dat 描述:上述那条警告的大概意思就是:警告:为IP地址'13.250.177.223'的主机(RSA连接的)持…
日志中有警告: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'debug' to '0' did not find a matching property. 跟踪后发现是连接池的配置问题: <Context path="/n" docBase="E:/xxx/war" debug="0" reloadable="true"…
这个应该是很多github新手经常出错的问题,这个就是没有在你github上添加一个公钥. 下面就直接说步骤: 1 可以用 ssh -T git@github.com去测试一下 图上可以明显看出缺少了公钥 2 直接上图 3. cat 一下  把出现的key 复制下来 4 .在github上添加刚刚生成的公钥 一切都好了  就ok 了 ,反正我的就好了,如果你的还没好那肯定是姿势不对,换个姿势再来一次吧…
如果出现这个问题,说明你的github缺少公钥 使用 ssh -T git@gtihub.com 去测试 1.生成密钥 ssh-keygen -t rsa -C "your name" #引号里输入你的用户名 2.查看密钥,使用 cat ,复制密钥 3.在github上添加密钥 点击用户头像   --setting   -- ssh and GPG keys…
安装部署: 1. 使用vagrant 准备3太虚拟机,自己使用Vbox 准备3太也可以. 2. 按照 https://github.com/gjmzj/kubeasz 安装. 3. 使用letsencrypt + harbor + nginx 搭建dockerhub. (正在进行) 准备好环境后的安装过程: root@k8s1:/etc/ansible# ansible-playbook 01.prepare.yml PLAY [deploy] *************************…
动态生成主机列表和相关参数 def create_admin_domain(admin_node): workpath = BASE_DIR + '/tools/ansible/script' hosts_file = BASE_DIR + '/tools/ansible/host/' + createhostfile() yml_file = BASE_DIR + '/tools/ansible/yml/' + 'create_admin_domain.yml' domain_path = a…
参考Ansible权威指南:https://ansible-tran.readthedocs.io/en/latest/index.html 以下内容学习自马哥教育 Ansible: 运维工作:系统安装(物理机.虚拟机)--> 程序包安装.配置.服务启动 --> 批量操作(程序升级) --> 程序发布  --> 监控 运维大致分为三个层面 OS Provisioning:提供操作系统 物理机:PXE.Cobbler 虚拟机:Image Templates(映像文件模板) Confi…