【服务器部署工具】Python Deploy工具Fabric - Function - ITeye技术网站
在管理很多很多服务器的时候,有时会有这样的需求:
从本地向某些服务器上传、从server下载数据到本地、获取某个命令在某些server上的执行结果。Python的小工具fabric就是解决这样的需求。
sudo apt-get install python-dev(安装Python头文件)
python-setuptools (安装easy_install)
sudo apt-get install fabric
以下以几个例子说明。
Python代码
- # fabfile.py
- def uptime():
- run('uptime')
- $Sgt; fab uptime -H 10.1.1.3
- [10.1.1.3] run: uptime
- [10.1.1.3] out: 05:20:39 up 88 days, 12:00, 0 users, load average: 0.03, 0.03, 0.00
# fabfile.py def uptime(): run('uptime') $Sgt; fab uptime -H 10.1.1.3 [10.1.1.3] run: uptime [10.1.1.3] out: 05:20:39 up 88 days, 12:00, 0 users, load average: 0.03, 0.03, 0.00
fabric英音:['fæbrik]美音:['fæbrɪk]
名词 n.
1.织物 ,织品 ;布料 [C][U]
These clothes are made of imported fabrics.
这些衣服用进口布料制成。2.构造 ,结构 ;组织 [U]
The whole social fabric was threatened with disintegration.
整个社会结构有瓦解的危险。3.建筑 ;建筑物 ;构造物 [U]
- python-deployment-with-fabric3401.ppt.tar.gz (690.8 KB)
- 下载次数: 19