반응형 분류 전체보기188 [Solved][firebase] error FirebaseError: Firebase Storage: User does not have permission to access '*******'. (storage/unauthorized) 해결방법 [Solved][firebase] 해결방법 error FirebaseError: Firebase Storage: User does not have permission to access '*******'. (storage/unauthorized) Firebase storage의 내용을 read할때 발생하는 오류이다. 이 오류는 권한이 없는 유저가 storage의 내용을 읽고자 할 때 발생하므로 아래와 같이 Storage - Rules의 내용을 수정하자. [English](This error occurs when reading the contents of Firebase storage. This error occurs when an unauthorized user tries to read the conten.. 2022. 9. 3. [Linux] Change and add ssh port number (ssh 포트 번호 바꾸기, 추가하기) [Linux] Change and add ssh port number (ssh 포트 번호 바꾸기, 추가하기) 리눅스의 OpenSSH 설정 파일에서 포트 번호를 수정 또는 추가하면 된다. (You can edit or add the port number in the Linux OpenSSH configuration file.) sudo vim /etc/ssh/sshd_config #Port 22 -> Port 22 -> Port 2022 service sshd restart 또는 /etc/rc.d/init.d/sshd restart 2022. 9. 3. [Git] push/pull automatic login (push/pull 자동 로그인) [Git] push/pull automatic login (push/pull 자동 로그인) - 계정 설정 (Account Settings) name 설정 git config --global user.name "{name}" 프로젝트 마다 다른 name 사용하려면 --global 옵션 제거 email 설정 git config --global user.email {email} 프로젝트 마다 다른 email 사용하려면 --global 옵션 제거 설정 확인 git config --list - Git 계정 정보 저장 (Storing Git Account Information) Credential 정보 저장1 git config credential.helper store 현재 레포지터리에 대해서만 영구 적용 Cre.. 2022. 9. 3. [Flutter] apk build command (debug, release available) (apk 빌드 명령(debug, release 가능)) [Flutter] apk build command (debug, release available) apk 빌드 명령(debug, release 가능) - build for debug flutter build apk --debug --target-platform=android-arm64 - build for release flutter build apk --release --target-platform=android-arm64 2022. 8. 31. 이전 1 ··· 27 28 29 30 31 32 33 ··· 47 다음 반응형