浙江省高等学校教师教育理论培训

微信搜索“毛凌志岗前心得”小程序

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

【服务器部署工具】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代码  收藏代码
  1. # fabfile.py  
  2. def uptime():  
  3.     run('uptime')  
  4.   
  5. $Sgt; fab uptime -H 10.1.1.3  
  6. [10.1.1.3] run: uptime  
  7. [10.1.1.3] out:  05:20:39 up 88 days, 12:00,  0 users,  load average: 0.030.030.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]

 

posted on 2012-02-22 11:19  lexus  阅读(562)  评论(0编辑  收藏  举报