• roles学习笔记(模拟安装httpd服务)


    这是目录(app 是模拟的角色)

    [root@test ansible]# tree
    .
    ├── app_role.retry
    ├── app_role.yml
    ├── httpd_role.yml
    ├── nginx_role.retry
    ├── nginx_role.yml
    └── roles
    ├── app
    │   ├── files
    │   │   └── moniwenjiancopy.conf
    │   ├── handlers
    │   │   └── main.yml
    │   ├── tasks
    │   │   ├── copy.yml
    │   │   ├── cptml.yml
    │   │   ├── group.yml
    │   │   ├── main.yml
    │   │   ├── start.yml
    │   │   ├── user.yml
    │   │   └── yum.yml
    │   ├── templates
    │   │   └── httpd.conf.j2
    │   └── vars
    │   └── main.yml
    ├── httpd
    │   ├── files
    │   │   └── httpd.conf
    │   └── tasks
    │   ├── copy.yml
    │   ├── main.yml
    │   └── user.yml
    └── nginx
    ├── tasks
    │   ├── group.yml
    │   ├── main.yml
    │   ├── restart.yml
    │   ├── start.yml
    │   ├── templ.yml
    │   ├── user.yml
    │   └── yum.yml
    └── templates
    └── nginx.conf.j2 

    此处遇到个坑, ERROR! The requested handler 'restart service' was not found in either the main handlers list nor in the listening handlers list

    百度了一下解决方法是把handlers的下的*.yml  文件名称改为main.yml

  • 相关阅读:
    ADO数据库操作方式
    C++ 连接Oracle
    ADO 动态链接数据库
    C++连接Oracle之OCCI(windows)
    App测试经验分享之登录注册
    使用dpkg时,提示:dpkg:处理软件包XXX时出错
    性能测试指标及常用的监控工具[转]

    JMeter ——Test fragment
    JMeter设置Http代理对web或者app进行录制
  • 原文地址:https://www.cnblogs.com/hsyw/p/12191857.html
Copyright © 2020-2023  润新知