python學習-fabric(高效遠端自動化部署工具)

disable發表於2021-09-09

最近公司給了臺web測試伺服器,最近正好學習python語言的flask框架,琢磨著搭個小部落格玩玩,但是每次修改程式碼後,都需要重新打包程式碼,然後sftp到伺服器,再解壓,重啟服務。作為一個懶人當然不能忍,於是乎發現了這貨-fabric。

fabric是python語言實現的一個利用ssh高效部署和管理系統的工具。

安裝

省略python、pip管理工具安裝過程

pip install fabric

驗證是否安裝成功

進入python編輯模式,輸入程式碼,無錯即表示成功安裝

from fabric.api import local

fabric版hello world

fabric 預設檔案fabfile.py,當然如果不想用這個名字,需要加-f引數

  1. 建立fabfile.py檔案

    vim fabrile.py
  2. 編輯程式碼

    #coding:utf-8
    from fabric.api import local#
    def hello():
    # local函式用來執行本地命令
    local('echo "hello wolrd!"')
  3. 執行程式碼

    fab hello

    可以透過fab -l檢視可以執行的任務,當前為hello函式
  4. 執行結果

[localhost] local: echo "hello world!"
hello world!
Done.

fabric常用api

函式 解釋 例子
local 執行本地命令 local('ls -l')
lcd 切換本地目錄(需要with包裹) lcd('本地目錄')
run 執行遠端命令 run('ls -l')
cd 切換遠端目錄(需要with包裹) cd('遠端目錄')
put 將本地檔案上傳至遠端目錄 put('本地檔案','遠端目錄')
env fabric環境,配置遠端ip、埠、密碼 見下文

fabric遠端執行例子

將本地/tmp/local目錄下建立hello.txt(內容“hello world!”)檔案上傳至伺服器/tmp/remote上,並顯示txt檔案內容

coding:utf-8

from fabric.api import local,cd,put,lcd,env,run
# 目標hosts(可多個),使用者@ip:22,使用ssh
env.hosts = ['root@remoteip:22']
# root密碼
env.password='pwd'
def hello():
# 切換到本地/tmp/local目錄
with lcd('/tmp/local'):
# 執行本地命令
local('echo "hello world!" > hello.txt')
# 上傳至伺服器
put('hello.txt','/tmp/remote')
# 切換到伺服器/tmp/remote目錄
with cd('/tmp/remote'):
# 執行伺服器命令
run('cat hello.txt')

執行結果

fab hello
[root@remoteip:22] Executing task 'hello'
[localhost] local: echo "hello world!" > hello.txt
[root@remoteip:22] put: /tmp/local/hello.txt -> /tmp/remote/hello.txt
[root@remoteip:22] run: cat hello.txt
[root@remoteip:22] out: hello world!

多個目標伺服器

  1. 相同密碼或者手動輸入:

    env.hosts = ['root@ip1:22',root@ip2:22]
  2. 不同密碼或者不想手動輸入(此方法也可定義不角色一組伺服器):

    #coding:utf-8
    from fabric.api import local,cd,put,lcd,env,run,execute,roles
    env.roledefs = {
    'role1':['root@ip1:22',],
    'role2':['root@ip2:22',]
    }
    env.passwords={
    'root@ip1:22':'pwd1',
    'root@ip2:22':'pwd2'
    }
    @roles('role1')
    def role1():
    with cd('/tmp'):
    run('ls -l')
    @roles('role2')
    def role2():
    with cd('/tmp'):
    run('ls')
    def task():
    execute(role1)
    execute(role2)

最後記錄我部署程式碼,方便日後參考

-- coding:utf-8 --

from fabric.api import local, cd, put, lcd, settings, env, run
import os
import time

env.hosts = ['root@remoteiip:22']
env.password = 'pwd'
tar_file = 'minibbs.tar.gz'
loc_tar_path = 'dist'

def _pack():
# 當前目錄在minibss/dist下
include = ['../minibbs/static/', '../minibbs/templates/', '../minibbs/.py', '../minibbs/.db', '../run.py']
# 發生錯誤僅僅給出警告,而不是退出
with settings(warn_only=True):
local('rm -f %s' % os.path.join(loc_tar_path, tar_file))
with lcd(loc_tar_path):
local('tar -czvf {tar_file} --exclude=\'{tar_file}\' {include}'.
format(tar_file=tar_file, include=' '.join(include)))

def _deploy():
remote_tar_path = '/root/haort/venv/tmp/' + tar_file
with settings(warn_only=True):
run('rm -f %s' % remote_tar_path)
put(os.path.join(loc_tar_path, tar_file), remote_tar_path)
remote_pro = 'minibbs' + time.strftime('%Y%m%d%H%M', time.localtime())
remote_proj_dir = '/root/haort/venv/' + remote_pro
with settings(warn_only=True):
run('mkdir %s' % remote_proj_dir)
with cd(remote_proj_dir):
run('rm -rf %s' % '*')
run('tar -xzvf %s' % remote_tar_path)
with cd('/root/haort/venv/'):
run('rm -f minibbs')
run('ln -s %s minibbs' % remote_pro)
run('supervisorctl stop minibbs')
run('supervisorctl start minibbs')

def task():
_pack()
_deploy()



作者:haort
連結:


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/200/viewspace-2805759/,如需轉載,請註明出處,否則將追究法律責任。

相關文章