欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ssh密码登录方式

程序员文章站 2024-03-20 12:55:40
...

1、先创建key storage
ssh密码登录方式
ssh密码登录方式
2、配置项目的password key
ssh密码登录方式
3、配置xml文件将登录方式改为password
ssh-authentication=“password” sudo-password-storage-path=“keys/gitpassword”

<?xml version="1.0" encoding="UTF-8"?>
<project>
<node name="zabbix" description="zabbix" tags="zabbix" hostname="10.0.0.8" osArch="amd64" osFamily="unix" osName="freebsd" osVersion="9.2-RELEASE-p15" username="root" />
<node name="git" description="git" tags="git" hostname="10.0.0.81" osArch="amd64" osFamily="unix" osName="freebsd" osVersion="9.2-RELEASE-p15" username="root"  ssh-authentication="password" sudo-password-storage-path="keys/gitpassword"/>
</project>

4、执行下command测试一下
ssh密码登录方式