반응형 error28 [OS X] Open SSL - Handshake Error (Solved) [OS X] Open SSL - Handshake Error (Solved) 문제 상황 (problem) Open SSL 관련 오류가 계속된다. 원인이 모호한 경우, Handshake error일 가능성이 높다. 해결 방법 (solution) export PATH=/usr/local/bin:$PATH brew link --force openssl 환경 변수 경로 PATH에 위와 같이 openssl이 위치한 경로를 추가해준다. 그리고, brew 패키지 매니저를 이용하여 openssl를 강제로 link해준다. 2023. 7. 26. SocketException: Connection failed (OS Error: Operation not permitted, errno = 1) [flutter][macOS] SocketException: Connection failed (OS Error: Operation not permitted, errno = 1)[flutter][macOS] 에러 내용애플 macOS에서 http통신 코드를 호출할 때, SocketException: Connection failed 에러가 나타날 때가 있다.에러 사유를 디버깅해보면 OS Error: Operation not permitted 라고 표시된다.이제 우리는 OS 에서의 권한적인 문제가 있나보구나 정도로 원인을 유추할 수 있다. 해결책아래와 같이 앱 프로젝트 내에서 권한을 추가한다.파일은 Runner/DebugProfile.entitlements 이다. 기존 코드는 server에 대해서만 true처리되어있을 수도 있는데 clie.. 2023. 2. 7. How to solve error "unhandled exception: user denied permissions to access the device's location." 해결방법 How to solve error "unhandled exception: user denied permissions to access the device's location." 해결방법 아래와 같이 오류 메시지 발생 (Error message as below) unhandled exception: user denied permissions to access the device's location. 해결 방법 : 아래 코드와 같이 permission을 추가하는 코드 작성 (Solution: Write code to add permission like below code) LocationPermission permission = await Geolocator.requestPermission(); // 추가!.. 2022. 10. 19. Running as root without --no-sandbox is not supported - Solution(에러 해결 방법) [Linux][Qt] Running as root without --no-sandbox is not supported - Solution(에러 해결 방법) 문제 상황 Root권한으로 qt프로젝트나 크롬 실행 파일 등을 실행하면 나타나는 에러이다. (아래 에러 메시지) 이 에러로 인해 잘 동작중이던 프로그램이 crash되곤 한다. (This error appears when running a qt project or a chrome executable file with root privileges. (error message below) Due to this error, programs that were working well often crash.) > 해결 방법 sudo로 실행해서 발생한 에러이다. 보.. 2022. 10. 8. 이전 1 2 3 4 5 6 7 다음 반응형