我想将使用结构的应用程序部署到代理服务器。通常我们 ssh 到代理服务器,然后 ssh 到生产服务器,但是 Fabric 似乎不允许直接这样做。
设置的一个示例是本地 --> 服务器 A(代理)-> 服务器 B(应用程序服务器)
目的地是服务器 B。
我尝试使用下面的 fab 文件进行测试。
import os.path
from fabric.api import env, run, sudo, cd, local, put, settings
from fabric.contrib.files import sed, exists
from datetime import datetime
def proxy():
env.user = "root"
env.hosts = ['proxy']
env.key_filename = "/home/root/monitorserver.pem"
def production():
"""Defines production environment ."""
env.is_debuggable = False
env.user = "root"
env.hosts = ['appserver']
env.key_filename = "/home/root/appserver.pem"
def createfile():
"""Start Excecute test commands"""
sudo("touch /tmp/test_%s" % datetime.now().strftime('%H:%M:%S'))
但运行命令
fab proxy createfile production createfile
似乎只作为
fab proxy createfile
fab production createfile
有没有办法可以在本地运行结构并使用代理部署到服务器 B?