전체 글54 Redis의 사용 이유 캐시를 사용하기 때문에 Sql문을 미리 저장해두고 빠르게 이용이 가능하다. 백업 및 복구가 용이하다. 큐, 스택용으로 쓴다. 예(push, mail, sms) key - value sql로 처리하는것보다 빠른처리가 가능하다. 2021. 7. 12. Node.js Upgrade Error n모드를 사용하여 node 업데이트 시 Npm install cannot find module 'semver' error가 발생할 경우 아래의 방법으로 node 업데이트 시 해결 curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash - sudo apt-get install -y nodejs 2021. 7. 7. You need to install postgresql-server-dev-X.Y for building a server-side extension or libpq-dev for building a client-side applicatio Error 해결법 bundle install을 할 때 You need to install postgresql-server-dev-X.Y for building a server-side extension or libpq-dev for building a client-side application 에러 발생 시 아래 코드 실행 sudo apt-get install postgresql-server-dev-all sudo apt-get install postgresql-common 실행 후 bundle install 2020. 12. 31. Linux에서 yarn 에러 'There are no scenarios; must have at least one.' 해결법 yarn 사용 시 ERROR: There are no scenarios; must have at least one. 발생 시 아래의 코드 실행 sudo apt remove cmdtest sudo apt remove yarn curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list sudo apt update sudo apt install yarn 2020. 12. 31. bundle install 시 "Cannot Load Such File" 에러 해결 방법 Ruby 프로젝트에서 bundle install 명령을 실행할 때 다음과 같은 "Cannot Load Such File" 에러를 만날 수 있습니다:LoadError: cannot load such file -- openssl이 에러는 보통 OpenSSL 라이브러리와 Ruby 설치 간의 연결 문제로 인해 발생합니다.이번 글에서는 RVM(Ruby Version Manager)을 사용하여 이 문제를 해결하는 방법을 단계별로 설명합니다.---1. 원인 분석이 에러는 다음과 같은 이유로 발생합니다:OpenSSL 라이브러리가 시스템에 없거나, 제대로 설치되지 않음.Ruby 설치 시 OpenSSL 라이브러리를 인식하지 못함.따라서 OpenSSL 패키지를 설치하고, Ruby를 올바르게 재설치해야 문제가 해결됩니다.--.. 2020. 12. 31. Push 인증서 갱신/재발급 iOS 푸시 알림(Push Notification)을 사용하는 앱에서는 인증서의 유효기간이 만료되기 전에 갱신하거나, 문제가 발생했을 때 재발급이 필요합니다.이번 글에서는 Push 인증서 갱신/재발급 과정을 단계별로 정리했습니다.---인증서 갱신 및 재발급 프로세스 1. 인증서 내보내기(P12 파일 저장)인증서를 AWS와 같은 서비스에 업로드하려면 인증서를 .p12 형식으로 내보내야 합니다.**키체인 접근(Keychain Access)**에서 인증서를 찾아 내보내기를 진행합니다..p12 파일은 푸시 서비스 제공자(AWS SNS, Firebase 등)에 업로드할 때 사용됩니다.내보낼 때 설정한 비밀번호는 서비스에 업로드할 때 필요합니다.2. Apple Developer 사이트 접속인증서를 갱신하거나 새로 .. 2020. 12. 31. 이전 1 ··· 3 4 5 6 7 8 9 다음