All Articles

TIL&TEL 21.05.31~21.06.06

TIL( Today I Learned)

  • 21-05-31 월

    • Docker-compose 작업하기
  • 21-06-01 화

    • docker dependency setting
    • Docker 작업 하면서 겪은 것들 공유하기
  • 21-06-02 수

    • Docker

      • 문서정리하기
      • image 용량 줄이기
      • 코드 정리후 commit
    • auto indexing 동작, 미동작 차이 나는것 분석하기

      • 빠지는것, 상태가 service 상태가 아니기 때문이다
      • 점수가 달라지는것 ??

        • 동일 모델 사용
        • 동일 옵션 사용
        • 자료의 차이?
  • 21-06-03 목

    • Docker 정리후 commit
    • 주간 업무 정리
    • 회의
  • 21-06-04 금

    • 프로세스 지연 현상 원인 찾기

TEL (Trial and Error Log)

21-05-31

  • ERROR: contains an invalid type, it should be a string, or an array

    • SITUATION: docker-compose up -d
    • REASON:

      • 빈 칸이 있었다.
    • SOLUTION:

      • command: <= 삭제
  • ERROR: Native controller process has stopped - no new native processes can be started

    • SITUATION: ElasticSearch run
    • REASON: node mode setting 없음
    • SOLUTION:

      • on docer compose
      • ENV discovery.type=single-node

21-06-01

  • ERROR: python: unexpected operator

    • SITUATION: .sh 프로그램 실행으로 조건 검증
    • REASON: 잘못된 문법 사용
    • SOLUTION: cmd arg1 arg2 <= [ cmd arg1 arg2 ]
  • ERROR: nginx: invalid option: “off”

    • SITUATION: nginx docker running
    • REASON: invalid space space space
    • SOLUTION:

      • ‘daemon off’ <= daemon off

21-06-03

  • ERROR: nginx: [emerg] host not found in upstream “flask:5000” in /etc/nginx/conf.d/flask_app.conf:2

    • SITUATION: docker-compose nginx 구동중
    • REASON: nginx에서 upstream 을 못잡고 있어서

      • depends-on : 를 하지 않았다
    • SOLUTION:

      • depends-on 에 app을 추가한다.
  • ERROR: 404 not found

    • SITUATION: docker flask run
    • REASON:

      • run port를 0.0.0.0: 가 아닌
      • 127.0.0.1: 로 설정했다.
    • SOLUTION:

      • `app.run("0.0.0.0")