본문 바로가기
728x90

전체 글217

[Git] SSL: no alternative certificate subject name matches target host name 사내 github 주소 변경되었을때 사내 github 주소가 변경되어 git pull 등이 되지 않았다. 새로운 url 로 변경해보자. [에러] Update failed. unable to access 'github 주소'': SSL: no alternative certificate subject name matches target host name matches target host name ' github 주소' [해결] git remote -v git remote set-url origin 새로운_주소 git pull origin 브랜치명 2023. 12. 21.
던킨도넛🍩 도라에몽 초코크림도넛 [내돈내산 리뷰] 아침에 집 앞 던킨도넛에서 산 도라에몽 초코크림도넛. 오늘 새로 나온 메뉴인 모양입니다. 초코코팅 위에 초코 도라에몽이 올라가 있네요. 역시나 초코크림은 저 안 깊숙히 있는 것 같지만😂 초코코팅이 진하고 맛있었어요 초코크림은 모두가 예상하는 조금 느끼한 크림 맛. 도라에몽을 좋아한다면 한번 먹어보기 좋을 것 같습니다! 2023. 11. 1.
Elasticsearch 특정 인덱스 데이터 확인하는 API - Elasticsearch 특정 인덱스 확인 API: GET /{인덱스명}/_search - 특정 필드의 값을 가지는 데이터만 검색 API: GET /{인덱스명}/_search?q={필드명}:{값} 2023. 6. 2.
Elasticsearch version 버전 확인 방법 1 curl "localhost:9200" (이걸 추천한다고 한다) 방법 2 /usr/share/elasticsearch/bin/elasticsearch -version 2023. 2. 28.
[Git] Make sure you configure your 'user.name' and 'user.email' in git. Git을 설치하고 가장 먼저 해야 하는 사용자 정보인 사용자 이름과 사용자 이메일 주소를 설정을 해야되는데, 사용자 정보 설정을 하지 않아서 발생하는 오류. 아래 명령어를 사용해 사용자 정보를 세팅해주면 해결된다. git config --global user.name "사용자이름" git config --global user.email "사용자메일주소" 프로젝트마다 다른 이름과 다른 메일주소를 사용하고 싶다면 --global 옵션을 빼고 명령어를 실행. 2023. 2. 21.
es_path_conf must be set to the configuration path ES_PATH_CONF must be set to the configuration path 해결: 그냥 ES_PATH_CONF 환경변수 설정 해주면 된다.. 2023. 2. 20.
Git submodule, 깃 서브모듈 첫걸음 (fatal: not a git repository (or any of the parent directories): .git) Git submodule, 서브모듈 예제로 하위 프로젝트 여러 개를 가지는 프로젝트를 하나 만들어 서브모듈의 기능을 살펴보자. 작업할 Git 저장소에 미리 준비된 리모트 Git 저장소를 서브모듈로 추가해보자. 서브모듈을 추가하는 명령으로 git submodule add 뒤에 추가할 저장소의 URL을 붙여준다. 이 URL은 절대경로도 되고 상대경로도 된다. 예제로 “banana” 라는 라이브러리를 추가한다. $ git submodule add https://github.com/{url} Cloning into 'banana'... remote: Counting objects: 10, done. remote: Compressing objects: 100% (10/10), done. remote: Total .. 2023. 2. 17.
pip "Could not fetch URL; There was a problem confirming the ssl certificate; after connection broken by 'SSLError [SSL: CERTIFICATE_VERIFY_FAILED]" 해결 Could not fetch URL; There was a problem confirming the ssl certificate; after connection broken by 'SSLError [SSL: CERTIFICATE_VERIFY_FAILED] 실행할 pip 명령어 뒤에 --trusted-host pypi.python.org --trusted-host files.pythonhosted.org --trusted-host pypi.org 를 붙이면 해당 에러는 해결된다. 근복적인 해결책은 아니지만.. 2023. 2. 16.
Git "You're using an RSA key with SHA-1, which is no longer allowed. Please use a newer client or a different key type." 운영서버(폐쇄망)에서 git clone 하려고 sha.pub 키를 git에 등록하고 진행 하는데 다음과 같은 에러가 났다. Git "You're using an RSA key with SHA-1, which is no longer allowed. Please use a newer client or a different key type." [해결방법] ssh-keygen -t ecdsa -b 521 -C "your_email@example.com" 이걸로 git > settings > key 에 등록하고 (sha 키 등록과 똑같이) 다시 진행하면 된다. 쉬운게 없음 이 에러가 갑자기 왜났는지도 모르겠다 2023. 2. 16.
728x90