Homoacademycus

  • Installation
  • TechOpinion
  • TroubleShooting
  • Develop Scripts

vmware

February 20, 2021

설치 프로그램

vmware-installer –help

Continue reading

validateField

February 20, 2021

joi 모듈

  • schema의 필드 유효값 설정
    {
    필드명: joi.필드타입().required(),
    body : joi.string().required(),
    tags : joi.array().items( joi.string() ).required(),
    }
    
  • 검증
    const validated = joi.validate(ctx.request.body, postSchema);
    if ( validated.error ){
    ctx.status = 400; // Bad Request
    ctx.body = validated.error;
    }
    
Continue reading

swarm

February 20, 2021

스웜 조건

  • 각 서버 간의 스웜 manager가 통신할수 있게 TCP 포트가 열려 있어야 한다.
  • 각 서버에 도커가 설치되어 있어야 한다.
  • 스웜의 보안성을 위해 TLS 인증이 있어야
  • 스웜 manager: 스웜 클러스터의 도커 노드(Docker node)를 관리하기 위한 시스템
  • 스웜 manager도 유사시를 대비해 여러 개의 백업manager를 만들어 두는 것이 좋다.
  • 로드 밸런싱을 할 때 라운드로빈 방식을 쓴다.
Continue reading

sqlDeveloper

February 20, 2021

Running SQL Developer in a Docker container

Docker is a hot topic at the moment and many have written interesting articles about how to use Docker in combination with Oracle. I especially liked Frits Hoogland’s article on installing an Oracle 12c database in a Docker container. It got me thinking about running SQL Developer in a container and how we can achieve this. There have been several other articles about this but I use a somewhat different approach than most.

Continue reading

postman

February 20, 2021

postman? API 테스트 이력을 보여주는 history API 테스트를 그룹화 하여 관리해 주는 collection 테스트 할 RESTful API 정보를 입력하기 위한 입력창

Continue reading
Prev Next

Copyright with Homoacademycus