Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- Python
- SQL
- IntelliJ
- java
- pandas
- DBMS
- mysql
- Kibana
- Javascript
- docker
- PostgreSQL
- mssql
- MariaDB
- analytics4
- springboot
- git
- 자바
- 티스토리챌린지
- pem
- spring
- 404error
- iBatis
- 호이스팅
- isNotEmpty
- 명령어
- Linux
- 오블완
- 리눅스
- github
- oracle
Archives
- Today
- Total
hanker
Spring - com.jcraft.jsch.JSchException: UnknownHostKey: - RSA key fingerprint is - 본문
SPRING/SPRING-ERROR
Spring - com.jcraft.jsch.JSchException: UnknownHostKey: - RSA key fingerprint is -
hanker 2021. 1. 18. 10:30반응형
com.jcraft.jsch.JSchException: UnknownHostKey: - RSA key fingerprint is - 에러가 뜨면 밑 코드 3줄을 추가하면 해결할 수 있다.
java.util.Properties config = new java.util.Properties();
config.put("StrictHostKeyChecking", "no");
session.setConfig(config);
반응형