Python之Fabric
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python之Fabric相关的知识,希望对你有一定的参考价值。
【Fabric】
Fabric是一个用Python开发的部署工具,最大特点是不用登录远程服务器,在本地运行远程命令,几行Python脚本就可以轻松部署。
安装
wget https://bootstrap.pypa.io/get-pip.py python get-pip.py pip install fabric
fabric常用参数
- -l : 显示定义好的任务函数名
- -f : 指定fab入口文件,默认入口文件名为fabfile.py
- -H : 指定目标主机,多台主机用","号分割
fabric常用API
- local : 执行本地命令,如:local(‘uname -s‘)
- lcd : 切换本地目录,如:lcd(‘/home‘)
- cd : 切换远程目录,如:cd(‘/etc‘)
- run : 执行远程命令,如:run(‘free -m‘)
- sudo : sudo方式执行远程命令,如:sudo(‘touch /test‘)
- put : 上传本地文件到远程主机,如:put(‘/hello‘, ‘/home/yanjun_wang/hello‘)
- get : 从远程主机下载文件到本地,如:get(‘/home/python/world‘, ‘/home/yanjun_wang/world‘)
- reboot : 重启远程主机,如:reboot()
- @task : 函数装饰器,标识的函数为fab可调用的,非标记的对fab不可见,纯业务逻辑
- @runs_once : 函数装饰器,标识的函数只会执行一次,不受多台主机影响
fabric全局属性设定
- env.host : 定义目标主机,如:env.host=[‘192.168.56.1‘, ‘192.168.56.2‘]
- env.user : 定义用户名,如:env.user="root"
- env.port : 定义目标主机端口,默认为22,如:env.port="22"
- env.password : 定义密码,如:env.password="passwd"
- env.passwords : 不同的主机不同的密码,如:env.passwords={‘[email protected]:22‘:‘passwd‘, ‘[email protected]:22‘:‘python‘}
示例:上传文件并执行
from fabric.api import * env.user = ‘mysql‘ env.hosts = [‘192.168.56.1‘, ‘192.168.56.2‘] #env.password = ‘[email protected]‘ env.passwords = { ‘[email protected]:22‘:‘[email protected]‘, ‘[email protected]:22‘:‘[email protected]‘, } @task @runs_once def tar_task(): with lcd(‘/home/mysql/yanjun_wang‘): local(‘tar zcvf hello.tar.gz hello_world.py‘) @task def put_task(): run(‘mkdir -p /home/mysql/yanjun_wang‘) with cd(‘/home/mysql/yanjun_wang‘): put(‘/home/mysql/yanjun_wang/hello.tar.gz‘, ‘/home/mysql/yanjun_wang/hello.tar.gz‘) @task def check_task(): lmd5 = local(‘md5sum /home/mysql/yanjun_wang/hello.tar.gz‘, capture=True).split(‘ ‘)[0] rmd5 = run(‘md5sum /home/mysql/yanjun_wang/hello.tar.gz‘).split(‘ ‘)[0] if lmd5 == rmd5: print(‘OK ...‘) else: print(‘ERROR ...‘) @task def run_task(): with cd(‘/home/mysql/yanjun_wang‘): run(‘tar zxvf hello.tar.gz‘) run(‘python hello_world.py‘) @task def execute(): print(‘start ...‘) tar_task() put_task() check_task() run_task() print(‘end ...‘)
以上是关于Python之Fabric的主要内容,如果未能解决你的问题,请参考以下文章