본문 바로가기
반응형

ERROR&BUG15

[Error][WebView] loadUrl 호출시 Webpage not available, net::ERR_CLEARTEXT_NOT_PERMITTED 발생 Android OS 9 Pie 버전부터는 WebView에 http URL 접근이 막혔다고 한다. 그래서, https 가 없어 http를 사용해야 할 경우 아래의 방법으로 처리하면 이상없이 진행된다. 2023. 5. 1.
[GitHub&Git] remote: Write access to repository not granted. 내가 생성한 repository 사용할 땐 문제없다가, 다른분이 생성한 Repository에 팀원으로 등록되어 git push를 하려고 하니 계속 아래와 같은 에러가 발생했다. remote: Write access to repository not granted. fatal: unable to access 'https://github.com/[...]/[...]git/': The requested URL returned error: 403 이리저리 찾아보니 기존 토큰으로는 새 repository를 사용할 수 없어서 생기는 문제인듯했다. 1. 내 프로필 - Settings - Developer settings - Personal access token - Tokens (classic) - Generate N.. 2023. 3. 14.
[GitHub] git push 안 되면서, remote: Support for password authentication was removed 이리저래 바빠서 미루다가 간만에 공부를 다시 시작했는데 intelliJ에서 git push 하려니 아래와 같은 알림이 떴다.remote: Support for password authentication was removed on August 13, 2021. remote: Please see https://docs.github.com/en/get-started/getting-started-with-git/about-remote-repositories#cloning-with-https-urls for information on currently recommended modes of authentication. fatal: Authentication failed for 'https://github.com/~.. 2023. 2. 21.
[IntelliJ]패키지 'java.lang'이(가) 모듈 'java.base'에 선언되어 있지만 이 모듈은 모듈 그래프에 없습니다 인텔리제이에서 자바 테스트를 하는데 패키지 'java.lang'이(가) 모듈 'java.base'에 선언되어 있지만 이 모듈은 모듈 그래프에 없습니다. 빨간줄이 그어지면서 실행은 또 잘 된다. 그래도 빨간줄은 언제나 찝찝. 혹시나 해서 File > IDE 다시 시작을 해주니 빨간줄이 사라졌다. 좀 허무하게 해결됐다. 2023. 2. 1.
[GIT&리눅스] .git 디렉터리 삭제 시 override 오류 .git 이 생성된 디렉터리를 지우려고 할 때 계속 override 어쩌고 저쩌고? 가 뜬다. 이 땐 그냥 강제로 삭제하는 옵션을 붙여서 지우면 된다. rm -rf .git 2023. 1. 23.
[GitHub] remote: Support for password authentication was removed on August 13, 2021. 에러 git에서 push 하려고 하니 패스워드 입력이 나왔고, 정확히 패스워드를 입력했음에도 아래와 같은 메세지가 나온다. remote: Support for password authentication was removed on August 13, 2021. 원격: 비밀번호 인증에 대한 지원이 2021년 8월 13일에 제거되었습니다. 결론은 CLI에서, password 대신 사용하는 액세스 토큰을 사용하라는 의미이다. 해결 방법 1) setting 을 눌러준다. 2) 셋팅 메뉴 하단에 Developer settings 을 클릭한다. 3) 'Personal access tokens' > 'Fine-grained tokens' > 'Generate new token' 을 클릭한다. (기존 방식으로 생성하고 싶으면.. 2023. 1. 22.
[mac]npm install -g yarn 설치 시 Error user@user-ui-MacBookPro ~ % npm install -g yarn npm ERR! code EACCES npm ERR! syscall mkdir npm ERR! path /usr/local/lib/node_modules/yarn npm ERR! errno -13 npm ERR! Error: EACCES: permission denied, mkdir '/usr/local/lib/node_modules/yarn' npm ERR! [Error: EACCES: permission denied, mkdir '/usr/local/lib/node_modules/yarn'] { npm ERR! errno: -13, npm ERR! code: 'EACCES', npm ERR! syscall: 'mkd.. 2022. 12. 27.
[github] please use a personal access token instead. remote : Support for password authentication was removed on August 13, 2021. Please use a personal access token instead. 원격: 2021년 8월 13일에 암호 인증 지원이 제거되었습니다. 대신 개인 액세스 토큰을 사용하십시오. 1. git 로그인 후 아래 url 로 이동, 또는 계정 - Setting - Developer setting(맨~아래 있음) 클릭 https://github.com/settings/apps GitHub: Where the world builds software GitHub is where over 73 million developers shape the future of software.. 2022. 4. 12.
[DBeaver] There is no physical unique key defined for... 에러 DBeaver를 사용하다가 가끔 조회된 데이터에서 ROW 선택 후 하단에 [-]삭제 버튼을 클릭해서 삭제를 하려고 하면Possible multiple rows modification there is no physical unique key for 'Table Name' DBeaver will use all columns as unique key. Possible multiple rows modification Are you sure you want to proceed?이라는 내용으로 알럿창이 뜬다. 번역기를 돌려보면다중 행 수정 가능 '테이블 이름'에 대한 실제 고유 키가 없습니다. DBeever는 모든 열을 고유 키로 사용합니다. 다중 행 수정 가능 계속하시겠습니까?결론은 삭제하려고보니 테이블에 고유 .. 2021. 2. 10.
반응형