728x90 트러블슈팅12 Oracle Cloud - SSH 접속 문제 해결 방법 https://youtu.be/FIFXj4-dMG0?si=o82LiOGn66XknbzU https://the-team-oasis.github.io/infrastructure/oci-recover-sshkey/ OCI Compute Instance SSH Key 복구 방법OCI Compute Instance에서 SSH키 분실등의 이슈로 접속이 불가능한 상태에서 추가로 공개키를 등록하는 방법에 대해서 설명합니다.the-team-oasis.github.io 2025. 3. 26. 윈도우 - ASUS Zenbook 14 윈도우 설치 단계 오류 해결 설치 프로그램에서 usb 또는 ieee 1394 포트를 통해 연결된 디스크의 구성이나 설치를 지원하지 않습니다. 관련 에러 발생할 경우 UEFI에서 고급 설정 > VMD 비활성화 출처: https://www.youtube.com/watch?v=mf2hXsJ7J7o 2025. 2. 26. Windows - OpenSSH 서비스 실행 오류 해결 1. C:\ProgramData\ssh\log 우클릭 속성 '보안' 탭 클릭2. SYSTEM과 Administrators를 제외한 유저의 권한 모두 삭제 출처: https://kaya-dev.tistory.com/57 OpenSSH : Start-Service sshd 오류 해결최근 윈도우를 업데이트 하고 openssh를 실행하면 아래와 같이 에러가 발생하면서 서버가 켜지지 않는 에러가 발생합니다. Start-Service : 다음 오류로 인해 'OpenSSH SSH Server (sshd)' 서비스를 시작할 수kaya-dev.tistory.com 2025. 1. 29. 리눅스 - Ubuntu 디스코드 화면 공유 오류 해결 Steps (detailed explanation of the steps are above):- echo $XDG_SESSION_TYPE (if it say wayland and not X11 follow with the below)- open the config sudo nano /etc/gdm3/custom.conf- Change #WaylandEnable=false to WaylandEnable=false- CTRL+O and enter to write out changes & CTRL+X and enter to close the session- Reboot 출처:https://askubuntu.com/questions/1516688/im-having-issues-with-screen-sharin.. 2024. 11. 15. 파이썬 - pip "error: externally-managed-environment" 문제 해결 sudo rm /usr/lib/python3.11/EXTERNALLY-MANAGED 출처: https://velog.io/@dongju101/error-externally-managed-environment-%EB%AC%B8%EC%A0%9C-%ED%95%B4%EA%B2%B0 error: externally-managed-environment 문제 해결다음 명령어 입력시 해결 가능velog.io 2024. 8. 10. 라즈베리파이 - sudo apt update "E: 패키지 캐시 파일이 손상되었습니다" 해결 방법 sudo rm -r /var/lib/apt/lists/*sudo apt clean && sudo apt update 출처: https://codeggoon.tistory.com/45 [Raspberry Pi] apt update - Reading package lists...Error! 문제 해결법Raspberry Pi의 운영체제 Linux 배포판(Raspberry Pi for Desktop 또는 라즈비안)을 설치후 시스템 라이브러리 업데이트를 위해 아래의 명령을 실행했는데 패키지 리스트 오류가 발생하였다. $ sudo apt update &&codeggoon.tistory.com 2024. 8. 10. MySQL - ERROR 1045 (28000): Plugin caching_sha2_password could not be loaded: 지정된 모듈을 찾을 수 없습니다. Library path is 'caching_sha2_password.dll' 해결 방법 1. WITH mysql_native_password 변경 ALTER USER '계정ID'@'localhost' IDENTIFIED WITH mysql_native_password BY '계정PW'; 해결 방법 2. my.cnf 파일 수정 [mysqld]default_authentication_plugin=mysql_native_password 해결 방법 3. 명령어 인수 추가 --default_authentication_plugin=mysql_native_password 출처: https://ynzu-dev.tistory.com/entry/MySQL-Authentication-plugin-cachingsha2password-cannot-be-loaded [MySQL] Authenticat.. 2024. 5. 5. Docker - Docker Engine Failed to Start 해결 방법 1. Windows 기능 설정 2. wsl --unregister wsl --unregister Ubuntuwsl --unregister docker-desktopwsl --unregister docker-desktop-data 3. 재부팅 출처: https://github.com/docker/for-win/issues/13638 Docker Engine Failed to Start : Getting Error "waiting for docker daemon: running wsl-bootstrap: WSL engine terminated abruptly"Description Using Windows 10 Enterprise. .. 2024. 4. 24. Expo - 웹뷰 ERR_CLEARTEXT_NOT_PERMITTED 에러 해결 방법 app.json "plugins": [ [ "expo-build-properties", { "android": { "usesCleartextTraffic": true } } ] ]"usesCleartextTraffic": true를 추가한다. 출처: https://docs.expo.dev/versions/latest/sdk/build-properties/ BuildPropertiesA config plugin that allows customizing native build properties during prebuild.docs.expo.dev 2023. 8. 15. MySQL - 도커에서 MySQL 서버에 접속이 안되는 경우[ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (13)] 로컬 MySQL 서버 접속을 위한 /var/run/mysqld/mysqld.sock에 접근이 안된다는 오류 메시지 이유는 mysqld 폴더 주인 외엔 아무도 접근이 안되기 때문임 chmod 755 /var/run/mysqld폴더 접근 권한을 755로 설정 2023. 3. 31. TryHackMe - OpenVPN 에러 해결 방법 (Failed to open tun/tap interface) 자신의 *.ovpn 파일을 열어서 "cipher AES-256-CBC"를 "data-ciphers AES-256-CBC:AES-256-GCM:AES-128-GCM:CHACHA20-POLY1305"로 수정하고 저장하고 실행한다. data-ciphers AES-256-CBC:AES-256-GCM:AES-128-GCM:CHACHA20-POLY1305 vim으로 수정하기:%s/cipher AES-256-CBC/data-ciphers AES-256-CBC:AES-256-GCM:AES-128-GCM:CHACHA20-POLY1305/g 출처: https://tryhackme.com/forum/thread/62bb0daf19e588005b7b1739 TryHackMe | Cyber Security Training.. 2023. 2. 12. C++ - 비주얼 스튜디오 E1696 : 파일 소스을(를) 열 수 없습니다. 해결 방법 https://developer.microsoft.com/en-US/windows/downloads/windows-sdk/ Windows SDK - Windows app developmentThe Windows SDK for Windows 11 contains headers, libraries, and tools you can use when you create apps that run on Windows.developer.microsoft.com윈도우 SDK가 없어서 관련 라이브러리들을 불러오지 못하는 오류이다. 위의 링크를 통해서 Windows SDK를 설치한 다음에 다시 프로젝트를 생성하면 해결 된다. 2022. 6. 27. 이전 1 다음 728x90