官网安装教程: https://walle-web.io/docs/2/installation_docker.html 后续登录所有者账号进行部署: 所有者:owner@walle-web.io \ Walle123 测试在内网192.168.22.15机子搭建walle后,并将内容存放于192. ...
分类:
其他好文 时间:
2021-02-06 11:55:50
阅读次数:
0
ansible实战:lamp 环境说明: 主机IP 需要安装的服务 192.168.100.1 ansible 192.168.100.2 httpd 192.168.100.3 mysql 192.168.100.4 php 项目结构预览: [root@ansible project]# tree ...
分类:
其他好文 时间:
2021-01-26 11:50:59
阅读次数:
0
Ansible 常用模块 参考地址: https://docs.ansible.com/ansible/latest/modules/modules_by_category.html ping command and shell # 注意区别和相同 # command 不能识别变量以及引号内容 ro ...
分类:
系统相关 时间:
2021-01-19 12:09:17
阅读次数:
0
ssh公钥生成 ssh-keygen 设置邮箱账号 git config --global user.email "you@example.com" 设置码云昵称 git config --global user.name "Your Name" ...
分类:
其他好文 时间:
2021-01-19 11:59:24
阅读次数:
0
开篇日常立个flag.... 安装Git 此处略去一万字 了解几个东西 为什么要配置公钥、私钥?配置了有什么用(对于Git)?怎么配置? (以后补充) Git 配置SSH公钥、私钥 1、进入Git Bash 鼠标右键<Git Bash Here>(或者文件路径里敲<Git Bash.lnk>) 2、 ...
分类:
其他好文 时间:
2021-01-18 11:09:19
阅读次数:
0
ssh远程管理服务 1.1 ssh介绍 ssh远程管理服务 默认linux是安装了的,如果没有安装执行以下命令。 [root@linux-server ~]# yum install -y openssh* [root@linux-server ~]# systemctl start sshd op ...
分类:
其他好文 时间:
2021-01-18 11:03:05
阅读次数:
0
准备4台主机,其中一台装ansible,其余三台分别部署apache、mysql、php,实现lamp架构 主控机ip:192.168.170.20 wang ansible 受控机ip:192.168.170.134 apache apache 192.168.170.135 mysql mysq ...
分类:
其他好文 时间:
2021-01-13 10:47:52
阅读次数:
0
生成ssh公钥认证所需的公钥和私钥文件 [jiaqi.li@localhost ~]$ ssh-keygen -t rsa -b 4096Generating public/private rsa key pair.Enter file in which to save the key (/home ...
分类:
其他好文 时间:
2021-01-11 11:08:35
阅读次数:
0
Ansible常用模块 ansible常用模块使用详解 ansible常用模块有: ping yum template copy user group service raw command shell script ansible常用模块raw、command、shell的区别: shell模块调 ...
分类:
其他好文 时间:
2021-01-08 11:31:37
阅读次数:
0
1、//配置分组主机 vim /etc/ansible/hosts 内容:# 方法一 主机+端口+密码 [webservers] 192.168.16.1 ansible_ssh_port=22 ansible_ssh_user=root ansible_ssh_pass="123456" # 方法 ...
分类:
其他好文 时间:
2021-01-08 11:23:03
阅读次数:
0