문제들(21)
-
Permission denied (publickey).fatal: Could not read from remote repository.
git을 쓰다보면 간혹 이런게 뜬다. [root@ip-1-31-15-68 nodejs_app]# git push -u origin master Permission denied (publickey). fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. 원인 : 해당 환경에 인증키가 없는것 생각해보면 당연하다. 민증 안보고는 술도 안파는 세상인데. 순서대로 따라하면 된다 [ec2-user@ip-2-31-15-68 nodejs_app]$ ssh-keygen **enter enter enter enter** [ec2-user@ip-2-31-1..
2020.08.13 -
Error: Hostname/IP doesn't match certificate's altnames
Error: Hostname/IP doesn't match certificate's altnames: "IP: 192.168.99.101 is not in the cert's list: 192.168.99.100" docker quickstart Docker quickstart terminal 열고 docker-machine regenerate-certs 입력 Kitematic 재시작 or RETRY SETUP happy 하다.
2020.08.12 -
docker error during connect 시 해결법
1 2 3 4 5 6 7 8 9 10 11 $ docker ps error during connect: Get http://%2F%2F.%2Fpipe%2Fdocker_engine/v1.26/containers/json: open //./pipe/docker_engine: The system cannot find the file specified. In the default daemon configuration on Windows, the docker client must be run elevated to connect. This error may also indicate that the docker daemon is not running Colored by Color Scripter cs 노트북에 doc..
2020.07.18 -
(legacy) 오류 아나콘다 파이썬 import 충돌
오류 이름 ImportError: numpy.core.multiarray failed to import windows에 깐 기존의 python이 anaconda를 깔고 tensorflow 예제를 해보다가 실행해보니까 에러가 나버렸다. 환경 windows 10, 64bit. python 3.6. https://github.com/konlpy/konlpy/issues/71#event-372277598 https://github.com/scikit-learn/scikit-learn/issues/7527 두번째 링크와 동일한 오류가 났다. 다음과 같은 방법들이 있었고 4번째 방법을 시도하기 전까지는 좀처럼 해결되지 않았다. 1. pip 로 numpy를 지우고 깔고를 반복 - 시간만 잡아먹음 2. jpype1 을..
2020.07.14 -
git - fatal authentication failed for ~ 해결법
인증이 잘못되었을 때는 git pull, git push를 아무리 쳐도 authentication failed 만 뜬다. window + R -> control /name Microsoft.CredentialManager 을 통해 자격증명 기능 페이지에 들어간다. windows 자격증명을 선택한다. 본인의 경우 windows 자격증명에 gitlab 인증 정보가 저장되어 있었다. gitlab , 혹은 github의 자격증명을 편집하거나 삭제한다.(나는 삭제함) 열려져 있는 git bash를 닫고 다시 실행한다. 인증메시지가 뜨면 email password를 정확하게 치면 된다. happy하다
2020.07.13 -
scanner 입력이 버퍼 때문에 잘 안될때
buffer에 들어온 enter 때문에 입력창만 반복해서 뜨곤 한다. 이럴때는 Scanner.nextLine()을 통해 buffer를 비워준다 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 while(!(region >= 1 && region
2020.01.30