使用python调用playbook和shell脚本
我的python脚本为:
#!/usr/bin/env python
import ansible.playbook
from ansible import callbacks
from ansible import utils
import json
import commands
status, result = commands....
分类:
其他好文 时间:
2015-07-13 20:42:57
阅读次数:
250
前言随着IT行业的迅猛发展,传统的运维方式靠大量人力比较吃力,运维人员面对日益增长的服务器和运维工作,不得不把很多重复的、繁琐的工作利用自动化处理。前期我们介绍了运维自动化工具ansible的简单应用,本期带来的是运维自动化神器puppet基于Master/Agent模式实现LNMP平台..
分类:
其他好文 时间:
2015-07-13 00:59:14
阅读次数:
261
importandroid.content.Intent;importandroid.os.Bundle;importandroid.os.Handler;importandroid.support.v7.app.ActionBar;importandroid.support.v7.app.ActionBarActivity;importandroid.text.TextUtils;importandroid.util.Log;importandroid.view.View;importandroid.vie..
分类:
移动开发 时间:
2015-07-12 00:23:37
阅读次数:
325
1.利用dm-crypt来创建加密文件系统。编写shell脚本
2.编写ansible,playbook文件
3.编写python脚本
首先编写shell脚本
#!/bin/sh
sudo apt-get install dmsetup cryptsetup
sudo modprobe dm-crypt
echo "dd if=/dev/zero of=/home/prod/secr...
分类:
其他好文 时间:
2015-07-10 13:29:46
阅读次数:
139
1.创建mysql的playbook结构[root@ansibleroles]#pwd
/etc/ansible/roles
[root@ansibleroles]#mkdir-pmysql_install/{files,handlers,meta,tasks,templates,vars}
[root@ansibleroles]#treemysql_install/
mysql_install/
├──files
├──handlers
├──meta
├──tasks
..
分类:
数据库 时间:
2015-07-06 20:08:24
阅读次数:
213
ansible默认提供了很多模块来供我们使用。在Linux中,我们可以通过ansible-doc-l命令查看到当前ansible都支持哪些模块,通过ansible-doc-s模块名又可以查看该模块有哪些参数可以使用。下面介绍比较常用的几个模块:copy模块
file模块
cron模块
group模块
user模块
yum模块
serv..
分类:
其他好文 时间:
2015-07-02 19:39:12
阅读次数:
332
一、ansiable介绍ansible的架构大致如下ansible是新出现的运维工具是基于Python研发的糅合了众多老牌运维工具的优点实现了批量操作系统配置、批量程序的部署、批量运行命令等功能。运维工具常见的工作模式
1、agent模式:基于ssl实现。代理工作在被监控端。像puppet。
2、agentl..
分类:
其他好文 时间:
2015-07-02 17:48:58
阅读次数:
276
安装yum-yinstallansibleexpect生成key,ssh-keygen-trsa-f~/.ssh/id_rsa两种办法ssh+expect出自oldbodycat/etc/ansible/hosts[web]web1ansible_ssh_host=192.168.1.21web2ansible_ssh_host=192.168.1.22提供修改的exp.sh./etc/init.d/functions
ip=$1
functionKNOWN_HOST_REBUI..
分类:
其他好文 时间:
2015-07-01 18:46:00
阅读次数:
182
内置的state模块user 模块是用来创建用户和管理用户设定的,用户可以被设置成 present 状态或者 absent 状态。fred: user.present: - fullname: Fred Jones - shell: /bin/zsh - home: /home/...
分类:
其他好文 时间:
2015-06-30 14:28:49
阅读次数:
161