运维
HeavenAndHell
这个作者很懒,什么都没留下…
展开
-
kong Gateway 安装(Kong Gateway (Enterprise) on CentOS)
查询官网文档:https://docs.konghq.com/enterprise/2.5.x/deployment/installation/centos/centos7 :文件下载然后按照文档部署就可以原创 2021-09-14 14:01:29 · 289 阅读 · 0 评论 -
ansible ssh免密碼登錄
第一步:ssh-keygen -t rsa 這裡會在你的root下.ssh/ 下生成幾個文件第二步:ssh-copy-id -i /root/.ssh/id_rsa.pub root@192.168.36.15 (需要免密码登录的主机)然后就ok原创 2017-09-28 14:37:10 · 739 阅读 · 0 评论 -
Ansible 基础入门-Playbook
playbook 功能可以把shell 腳本寫入到文件裡面調用執行的模塊 可以複製文件的模塊還有其他等 地址: http://www.jianshu.com/p/41c4ed3ce779转载 2017-12-08 16:43:52 · 420 阅读 · 0 评论 -
linux expect ssh自动登陆
1 检查并且安装expect sudo apt-get install tcl tk expect 2 写脚本test.sh #!/usr/bin/expect #注意这里是 你的expect路径(一般就是这个默认路径)set timeout 100set userName "xxxx"set password "xxxx"spawn bash xxxx.sh #运...原创 2018-02-28 14:48:45 · 289 阅读 · 0 评论 -
dubbo 连接到zookeeper 内网地址错误的问题
修改一下 本地hosts 把本地局域网ip 映射到你自己的电脑名字就OK 例如:192.168.3.123 name原创 2018-03-01 14:53:54 · 3500 阅读 · 1 评论