본문 바로가기

error처리3

MacBook, MySQL,에서 "Authentication plugin 'caching_sha2_password' cannot be loaded error 처리 MacBook에서 MySQL에 연동을 할 때 "Authentication plugin 'caching_sha2_password' cannot be loaded 에러 처리 방법입니다. 원인은 MySQL 8.x 이상부터 비밀번호 암호 처리 방식이 변경되었는데 SQLAlchemy이 과거 방식을 찾고 있어서 발생하는 문제입니다. MySQL Community가 설치되어 있다면 "시스템 설정"을 클릭한 후 MySQL을 클릭합니다. "Initialize Database"를 클릭합니다. 비밀번호를 적당한 길이로 입력하고 "Use Legacy Password Encryption"을 선택한 후 "OK"를 클릭합니다. "Start MySQL Server"를 클릭합니다. MySQL 서버가 실행된 후 다시 접속을 하면 됩니다... 2023. 8. 22.
No author information was supplied by the version control system. xcode에서 Git repository를 등록할 때 "No author information was supplied by the version control system."라는 에러가 났을 때 처리 방법입니다. xcode에서 프로젝트를 Git Repository에 등록할 때 다음과 같이 "No author information was supplied by the version control system."이라는 메시지가 나오는 경우가 있습니다. 해결 방법은 위 화면에서 "Fix..."을 클릭해서 나오는 화면에서 Author Name과 Author Email을 입력하면 됩니다. 그런데 Author Name과 Author Email을 입력했는데도 닫기 버튼이 보이지 않습니다. 이때 당황하지 말고 "Sour.. 2022. 7. 18.
Failed to register bundle identifier 에러 처리 Xcode에서 App을 빌드할 때 "Failed to register bundle identifier"라는 에러 처리 방법입니다. [원인] 정확한 이유는 잘 모르겠지만 등록한 Bundle Identifier를 등록할 수 없기 때문입니다. [해결 방법] Bundle Identifier를 고유한 값으로 변경하면 해결할 수 있습니다. 예를 들면 Bundle Identifier가 "com.mycompany.myApp" 에서 에러가 났다면, "com.mycompany.myApp"를 "com.mycompany.myApp2" 등으로 변경하면 됩니다. 2022. 6. 13.