본문 바로가기
반응형

Error11

hudson.plugins.git.GitException: Command "git fetch..." returned status code 128: 에러 hudson.plugins.git.GitException: Command "git fetch --tags --force --progress --prune -- origin +refs/heads/develop:refs/remotes/origin/develop" returned status code 128: stdout: stderr: fatal: couldn't find remote ref refs/heads/develop 위 같은 에러가 발생 branch가 없어서 발생하는 에러. git에 알맞은 branch를 jenkins에 넣어주면 됩니다. 2023. 11. 1.
[Linux] fork: Cannot allocate memory 에러 - 명령어 입력 안됨 목차 Symptom 보통 검색해보면 swap 메모리 부족으로 인한 에러라고 한다. 그래서 swap 메모리를 늘리면 되지만 나의 경우는 명령어를 입력하면 fork: Cannot allocate memory 라는 에러문구만 나왔다. 그래서 어떤 프로세스가 사용하고 있는 메모리가 높은지 부터가 파악이 되지 않았다. Solved echo 1 > /proc/sys/kernel/sysrq echo f > /proc/sysrq-trigger echo 0 > /proc/sys/kernel/sysrq 위 세개의 명령어는 입력이 될텐데 한번 다 입력해도 안될때 있으면 두번째 명령어인 echo f > /proc/sysrq-trigger를 여러번 입력하시면 정상적으로 동작한다. oom킬러를 수동으로 트리거 하는건데 원인을 보.. 2023. 10. 13.
to use the 'ssh' connection type with passwords or pkcs11_provider, you must install the sshpass program 에러 명령어 ansible testserver -i hosts -m ping하니 우분투의 경우 apt install -y sshpass redhat 계열은 yum, maxos는 안해봤는데 brew로 하면 될듯 2023. 9. 25.
NPM 에러 - Error: The package "@esbuild/linux-x64" could not be found, and is needed by esbuild. 증상 npm run build 하니까 이런 에러가 발생했다. 해결방법 node modules를 삭제하면 된다. rm -rf node_modules/ 그리고 다시 install 후 build하면된다. npm i npm run build Reference https://stackoverflow.com/questions/75014342/any-idea-why-vite-js-is-having-issues-in-react-with-esbuild Any Idea why vite.js is having issues in react with esbuild I tried installing react app with vite and after installation when i tried using npm run dev.. 2023. 9. 15.
nested exception is java.util.NoSuchElementException: 'spring.redis.host' doesn't map to an existing object 에러 spring이 갑자기 위 같은 에러 발생 Redis 의 노드 및 샤드 구성을 변경하긴 했는데 변경된지 한참뒤에야 아래와 같은 에러가 발생한 건 이상한일이다. Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'redisConfig' defined in file [/home/app/example-api/webapps/ROOT/WEB-INF/classes/example/configuration/cache/RedisConfig.class]: Instantiati.. 2023. 8. 30.
AWS EKS nodegroup: still creating 계속 지속 목차 구성환경 terraform 으로 eks 생성한뒤 terraformer 로 autoscaling을 가져온뒤 custom 하게 한뒤 올려보았다. 증상 이상하게 어떤 에러도 발생하지 않고 still creating만 발생한다. 보통은 5분내에 생성이 되는데 굉장히 오래 걸렸다. 이것 저것 설정을 바꿔 보았는데도 안되었다. 원인 위 auto scaling 그룹이름이 콘솔에서 나타나지 않는걸로 보아 auto scaling과 nodegroup의 매핑이 잘 안되서 발생하지 않았나 싶었다. ECS에서 autoscaling을 개인적으로 생성한뒤 ECS를 생성하면 ECS에이전트가 제대로 인식을 못할수 있다는것을 생각해냈다. 해결 EKS도 마찬가지인가 싶어 autoscaling 부분과 launch-template 부분.. 2023. 7. 31.
AWS EKS 에러 error: exec plugin: invalid apiVersion "client.authentication.k8s.io/v1alpha1" 목차 증상 aws eks cluster 생성이후 노드 정보를 확인하려고 커맨드를 입력했는데 error: exec plugin: invalid apiVersion "client.authentication.k8s.io/v1alpha1" 라는 에러가 발생하였다. 인터넷 검색해보니 kubectl의 버전을 낮추라느니 kubeconfig 파일에서 v1alpha1 을 v1beta1로 바꾸라는 의견이 있었다. 개인적인 생각으로는 만든사람이 바보도 아닌데 버전 업하면서 eks 와 호환되지 않게 만들지는 않았을것이다. 그러므로 최신버전인데 많이 사용하는 aws eks호환이 안된다? 말이 되지 않는다. (잘안쓰는건 호환이 안되는건 이해가 된다.) 뭔가 다른 이유가 있을 것 같아 좀더 찾아보았다. https://qiita.c.. 2023. 7. 25.
spring broken pipe 에러 org.apache.catalina.connector.ClientAbortException: java.io.IOException: Broken pipe 해당 에러발생하면서 연속적인 요청 막기 응답시간 증가 가용 스레드 증가 exception 무시 및 block [해결 방법] 1. Request(요청) 후 Response(응답) 기다리기 : 클라이언트는 계속 해서 데이터를 보내지않고 하나의 레코드를 보낸 뒤 서버에서 정상적으로 수신됫다는 응답을 받게한다. (속도가 좀 느려진다.) 2. Exception 무시해버리기 : Client 가 비정상적인 종료를 했을때 Broken pipe Signal이 발생하고 Client의 종료를 서버에서 제어가 불가능 하므로 시그널을 무시한다. 3. 중복 요청 막기 : 클라이언.. 2023. 1. 2.
ElasticSearch)Malformed content, found extra data after parsing: START_OBJECT 에러 bulkl api 로 json 파일 색인 하는데 다음과 같은 에러가 발생했다. { "error" : { "root_cause" : [ { "type" : "mapper_parsing_exception", "reason" : "failed to parse" } ], "type" : "mapper_parsing_exception", "reason" : "failed to parse", "caused_by" : { "type" : "illegal_argument_exception", "reason" : "Malformed content, found extra data after parsing: START_OBJECT" } }, "status" : 400 } Malformed content, found extr.. 2022. 9. 2.
docker container status exited 안되고 실행상태 유지 증상 일반적으로 docker 로 컨테이너 run 하면 앱만 실행하고 exited 가 되버린다. docker run [container]를 했는데 바로 나와버림 원인 보통은 docker container를 처음 접할때 테스트 용도로 간단한 메시지 출력만 명령어로 지정을 하는데 이경우 해당 프로세스가 끝이나면 컨테이너도 내려간다. 이유는 해당 컨테이너의 주된 목적이 더 이상 유지되지 않기 때문에 컨테이너 또한 종료된다고 생각하면 된다. 해결방법 이럴땐 계속 실행되는 앱을 컨테이너 실행하면서 같이 실행시켜주면된다 일반적으로는 /bin/bash를 실행시킨다.(shell 에 따라 다르다. /bin/sh 가 될수도 있다.) 그래서 docker run [container] /bin/bash 를 해주면 컨테이너가 실행.. 2022. 7. 18.
maven generate:archetype 관련 에러 (no pom, no maven-archetype-quickstart:1.0) java sdk 이용해 보려고 maven 을 이용하여 해보려고 하는데 시작 부터 에러가 발생하였습니다. 원인이 된 command는 다음과 같습니다. mvn -B archetype:generate \ -DarchetypeGroupId=org.apache.maven.archetypes \ -DgroupId=com.example.myapp \ -DartifactId=myapp 이걸 window powershell 에서 치면 The goal you specified requires a project to execute but there is no POM in this directory 라고 나오는데 원래는 pom이 생성이 되어야 함 에러가 pom을 생성하면된다고 하니 생성하면 The desired archety.. 2022. 6. 23.
반응형