DrawingProcess
드프 DrawingProcess
DrawingProcess
전체 방문자
오늘
어제
«   2025/06   »
일 월 화 수 목 금 토
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
  • 분류 전체보기 (967)
    • Profile & Branding (25)
      • Career (18)
    • IT Trends (254)
      • Conference, Faire (Experien.. (31)
      • News (187)
      • Youtube (19)
      • TED (8)
      • Web Page (2)
      • IT: Etc... (6)
    • Contents (97)
      • Book (66)
      • Lecture (31)
    • Project Process (94)
      • Ideation (0)
      • Study Report (34)
      • Challenge & Award (22)
      • 1Day1Process (5)
      • Making (5)
      • KRC-FTC (Team TC(5031, 5048.. (10)
      • GCP (GlobalCitizenProject) (15)
    • Study: ComputerScience(CS) (72)
      • CS: Basic (9)
      • CS: Database(SQL) (5)
      • CS: Network (14)
      • CS: OperatingSystem (3)
      • CS: Linux (39)
      • CS: Etc... (2)
    • Study: Software(SW) (95)
      • SW: Language (29)
      • SW: Algorithms (1)
      • SW: DataStructure & DesignP.. (1)
      • SW: Opensource (15)
      • SW: Error Bug Fix (43)
      • SW: Etc... (6)
    • Study: Artificial Intellige.. (149)
      • AI: Research (1)
      • AI: 2D Vision(Det, Seg, Tra.. (35)
      • AI: 3D Vision (70)
      • AI: MultiModal (3)
      • AI: SLAM (0)
      • AI: Light Weight(LW) (3)
      • AI: Data Pipeline (7)
      • AI: Machine Learning(ML) (1)
    • Study: Robotics(Robot) (33)
      • Robot: ROS(Robot Operating .. (9)
      • Robot: Positioning (8)
      • Robot: Planning & Control (7)
    • Study: DeveloperTools(DevTo.. (83)
      • DevTool: Git (12)
      • DevTool: CMake (13)
      • DevTool: NoSQL(Elastic, Mon.. (25)
      • DevTool: Container (17)
      • DevTool: IDE (11)
      • DevTool: CloudComputing (4)
    • 인생을 살면서 (64)
      • 나의 취미들 (7)
      • 나의 생각들 (42)
      • 여행을 떠나자~ (10)
      • 분기별 회고 (5)

개발자 명언

“ 매주 목요일마다 당신이 항상 하던대로 신발끈을 묶으면 신발이 폭발한다고 생각해보라.
컴퓨터를 사용할 때는 이런 일이 항상 일어나는데도 아무도 불평할 생각을 안 한다. ”

- Jef Raskin

맥의 아버지 - 애플컴퓨터의 매킨토시 프로젝트를 주도

인기 글

최근 글

최근 댓글

티스토리

hELLO · Designed By 정상우.
DrawingProcess

드프 DrawingProcess

Study: Software(SW)/SW: Error Bug Fix

[Error fix] WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! 오류 해결 (서버 재설정 후 기존과 동일한 아이디로 접근하려고 할 때)

2022. 10. 9. 13:26
반응형

# Problem

서버를 새로 세팅한 후에 기존과 같은 아이디를 사용하여 접근하려하는데, 다음과 같은 문제가 발생하였다

$ ssh sjchoi@192.168.18.12
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@    WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!     @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!
Someone could be eavesdropping on you right now (man-in-the-middle attack)!
It is also possible that a host key has just been changed.
The fingerprint for the ECDSA key sent by the remote host is
SHA256:~~~~
Please contact your system administrator.
Add correct host key in /Users/choiseongjun/.ssh/known_hosts to get rid of this message.
Offending ECDSA key in /Users/choiseongjun/.ssh/known_hosts:11
ECDSA host key for 192.168.18.12 has changed and you have requested strict checking.
Host key verification failed.

# Solution

/home/seongjunchoi/.ssh/known_hosts  파일에 들어가서 해당 ip로 저장된 키 값이 저장된 라인을 삭제한 후 재접속을 시도하면 된다.

스푸핑 같은 해킹으로 의심되기 때문에 위와 같은 경고를 출력한다고 한다. 

  • Spoofing(스푸핑) : 외부의 악의적 네트워크 침입자가 웹사이트를 구성해 사용자들의 방문을 유도 후 사용자 정보를 탈취하여 원래 서버로 접근을 하려는 행위입니다. 이때 ssh 서버는 기존 사용자의 정보와 다른 사용자가 접근하면 위와 같은 정보를 출력하여 위험성을 알리게 됩니다.

# Reference

[Blog] ssh key 충돌 해결방법: https://ongamedev.tistory.com/entry/ssh-key-충돌-해결방법

반응형
저작자표시 비영리 변경금지 (새창열림)

'Study: Software(SW) > SW: Error Bug Fix' 카테고리의 다른 글

[Error fix] 'Error: ENOENT: no such file or directory, uv_cwd' 오류 해결  (0) 2022.11.16
[Error fix] 'linux df 명령어에서 파일을 지워도 가용공간(Available)이 늘어나지 않는 경우' 문제 해결  (0) 2022.10.24
[Trouble Shooting] Git에서 binary 파일과 같은 확장자 없는 파일 제외하는 방법  (0) 2022.09.27
[Error fix] 'tar: not found in archive' 오류 해결 (when using tar xvzf *.tar.gz)  (0) 2022.09.01
[Error fix] userdel: user sjchoi is currently used by process 14356  (0) 2022.08.05
    'Study: Software(SW)/SW: Error Bug Fix' 카테고리의 다른 글
    • [Error fix] 'Error: ENOENT: no such file or directory, uv_cwd' 오류 해결
    • [Error fix] 'linux df 명령어에서 파일을 지워도 가용공간(Available)이 늘어나지 않는 경우' 문제 해결
    • [Trouble Shooting] Git에서 binary 파일과 같은 확장자 없는 파일 제외하는 방법
    • [Error fix] 'tar: not found in archive' 오류 해결 (when using tar xvzf *.tar.gz)
    DrawingProcess
    DrawingProcess
    과정을 그리자!

    티스토리툴바