nextcloud webdav 설정 시 오류 해결, nginx 설정

윈도우에서 webdav를 연결하려는데 에러가 났다. 보통은 아이디, 패스워드를 입력하는 창이 나오는데 네트워크가 아에 연결이 안 되는 것과 같은 에러가 발생했다. nginx 설정에 문제가 있는 것으로 보여 설정 관련 내용을 찾았다.…

0 Comments

gitlab 버전 업그레이드 시 db migration 에러

gitlab을 최신 버전으로 업그레이드 하려는데 db migration에서 아래와 유사한 에러가 발생했다. gitlab-ctl 명령으로 restart를 할 때 postgresql-exporter가 정상적으로 실행이 안 되고 reconfigure할 때 아래 메시지들이 출력되었다. bash[migrate gitlab-rails database] action…

0 Comments

react native – Could not initialize class org.codehaus.groovy.runtime.InvokerHelper

react-native에서 android로 프로젝트를 실행하려는데 아래와 같은 오류가 발생했다. Could not initialize class org.codehaus.groovy.runtime.InvokerHelper 다음 링크를 통해 문제를 해결했다. https://stackoverflow.com/questions/35000729/android-studio-could-not-initialize-class-org-codehaus-groovy-runtime-invokerhel react-native로 생성한 프로젝트의 다음 파일을 수정한다. android/gradle/wrapper/gradle-wrapper.properties distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists distributionUrl=https\://services.gradle.org/distributions/gradle-6.3-all.zip zipStoreBase=GRADLE_USER_HOME…

0 Comments

nuxt document is not defined

Nuxt에서 component를 표시할 때 생기는 문제다. 처음 로딩 했을 때는 정상적으로 컴포넌트가 정상적으로 보이는데 새로고침을 하는 경우 "document is not defined" 라는 에러 메시지가 출력되고 정상적으로 페이지가 표시되지 않는다. 구글링한…

0 Comments

React Native 안드로이드 앱 데이터 로딩 문제

안드로이드 데이터 Fetch 에러 안드로이드 API 28 버전 부터 생긴 문제다. React Native를 이용해서 Android 앱을 만들었는데 React Native와 연결된 상태에서는 에뮬레이터에서 앱이 정상 실행됐는데 안드로이드 스튜디오에서 개발한 앱을 단독…

0 Comments

certbot 갱신 명령 사용 시 에러 해결

Let's Encrypt를 사용해서 SSL 인증서 등록을 했는데 만료일이 얼마 안 남았다는 메일을 받았다. 그동안 자동으로 갱신 해놓게 만들어서 한 번도 받은적이 없던 메일인데 어쩐일인가 싶었다. 먼저 cron으로 등록해둔 갱신 명령을…

0 Comments