191145685 发表于 2017-5-3 12:11:32

【服务器部署工具】Python Deploy工具Fabric

  在管理很多很多服务器的时候,有时会有这样的需求:
  从本地向某些服务器上传、从server下载数据到本地、获取某个命令在某些server上的执行结果。Python的小工具fabric就是解决这样的需求。
sudo apt-get install python-dev(安装Python头文件)
 
  python-setuptools (安装easy_install)
  sudo apt-get install fabric



以下以几个例子说明。

# fabfile.py
def uptime():
run('uptime')
$> fab uptime -H 10.1.1.3
run: uptime
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.
织物,织品;布料
These clothes are made of imported fabrics. 
这些衣服用进口布料制成。




2.
构造,结构;组织
The whole social fabric was threatened with disintegration. 
整个社会结构有瓦解的危险。




3.
建筑;建筑物;构造物
页: [1]
查看完整版本: 【服务器部署工具】Python Deploy工具Fabric