gpt4 book ai didi

python - Fabric 使用主机配置文件

转载 作者:太空宇宙 更新时间:2023-11-03 21:16:09 25 4
gpt4 key购买 nike

经过大量阅读后,我仍然不明白这到底是如何工作的。例如,如果我有一个像这样的hosts.yml配置文件:

hosts.yml:

server1:
host: serverip
user: username

我应该如何使用它来创建连接?我必须将hosts.yml重命名为fabric.yml才能通过上下文变量访问这些数据,例如:

@task
def do(ctx):
ctx['server1']

它会返回一个 DataProxy,我无法使用它来创建连接,或者我只是在文档中找不到

我的另一个问题:如何使用 -H 切换来指定在hosts.yml 文件中声明的这些主机?仅当我在 ~/.ssh/config 文件中创建别名时,它才有效,这根本不是那么好。

最佳答案

我将通过给出一个示例来回答您的这两个问题,其中您读取一个外部文件(.env 文件),该文件存储有关您尝试与特定用户连接的主机的信息。

info.env内容:

# The hostname of the server you want to connect to 
DP_HOST=myserverAlias

# Username you use to connect to the remote server. It must be an existing user
DP_USER=bence

~/.ssh/config 内容:

Host myserverAlias //it must be identical to the value of DP_HOST in info.env
Hostname THE_HOSTNAME_OR_THE_IP_ADDRESS
User bence //it must be identical to the value of DP_USER in info.env
Port 22

现在在 fabfile.py 中,您应该执行以下操作

from pathlib import Path
from fabric import Connection as connection, task
import os
from dotenv import load_dotenv
import logging as logger
from paramiko import AuthenticationException, SSHException


@task
def deploy(ctx, env=None):
logger.basicConfig(level=logger.INFO)
logger.basicConfig(format='%(name)s ----------------------------------- %(message)s')

if env is None:
logger.error("Env variable and branch name are required!, try to call it as follows : ")
exit()
# Load the env files
if os.path.exists(env):
load_dotenv(dotenv_path=env, verbose=True)
logger.info("The ENV file is successfully loaded")
else:
logger.error("The ENV is not found")
exit()
user = os.getenv("DP_USER")
host = os.getenv("DP_HOST")
try:
with connection(host=host, user=user,) as c:
c.run('whoami')
c.run('mkdir new_dir')
except AuthenticationException as message:
print(message)
except SSHException as message:
print(message)

然后您可以使用以下命令调用fabfile.py:

fab deploy -e info.env 

确保您的 info.env 与您的 fabfile.py 位于同一目录

关于python - Fabric 使用主机配置文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54693650/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com