Jenkins提示Host key verification failed的解决办法

jenkins用户生成密钥对
bash 复制代码
# 给jenkins用户生成密钥对
jenkins@Arvin627 :/$ ssh-keygen -t rsa
# 直接回车确定
jenkins@Arvin627 :/$ ssh-copy-id -i ~/.ssh/id_rsa.pub root@服务器ip地址
 
# 验证
jenkins@Arvin627 :/$ ssh root@服务器ip地址

root用户生成密钥对

bash 复制代码
# 给root用户生成密钥对
[root@Arvin627 ~]# ssh-keygen 
# 直接回车确定
[root@Arvin627 ~]# ssh-copy-id -i ~/.ssh/id_rsa.pub root@服务器ip地址
 
# 验证
[root@Arvin627 ~]# ssh root@服务器ip地址
相关推荐
芝麻开门-新起点2 小时前
数据脱敏与自动化技术融合:大规模GIS数据安全高效处理方案
运维·自动化
行走正道2 小时前
【探索实战】跨云应用分发自动化实战:基于Kurator的统一交付体系深度解析
运维·自动化·wpf·kurator·跨云分发
杨云龙UP3 小时前
SQL Server 备份异地同步 + 清理脚本
运维·服务器·数据库·sql·mysql·sqlserver
q***48414 小时前
Nginx中$http_host、$host、$proxy_host的区别
运维·nginx·http
_lst_5 小时前
linux进程状态
linux·运维·服务器
霍格沃兹测试开发学社-小明5 小时前
AI来袭:自动化测试在智能实战中的华丽转身
运维·人工智能·python·测试工具·开源
MaisieKim_5 小时前
2025年企业文档管理系统全面评测报告
运维·数据库
zzzsde6 小时前
【Linux】基础开发工具(3):编译器
linux·运维·服务器
..空空的人7 小时前
C++基于websocket的多用户网页五子棋 ---- 整合封装服务器模块设计实现
运维·服务器
愚戏师7 小时前
Python3 多线程
linux·运维·服务器·python