Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

양쪽 호스트에 공통적인 값을 가진 옵션은 <host>의 상위 <resource> 섹션 부분에서 한 번에 바로 지정해도 되는데 다음 예제처럼 기술하여 간소화 시킬 수 있습니다.

Info

각 노드의 노드 id(node-id) 의 지정은 필수사항 입니다.

Code Block
resource r0 {
  disk      d;
  meta-disk f;
  on alice {
    address   10.1.1.31:7789;
    node-id 0;
  }
  on bob {
    address   10.1.1.32:7789;
    node-id 1;
  }
}

구성 예제

다음의 예는 최소한의 설정으로 구성하는 예를 보여줍니다.Windows 구성파일 예시 입니다.

/etc/drbd.d/global_common.conf

Code Block
global {
}
common {
  net { 
    protocol C;
  }
}

/etc/drbd.d/r0.res

Code Block
resource r0 {
  on alice {  
    disk      d;
    address   10.1.1.31:7789;
    meta-disk f;
    node-id 0;  
  }
  
  on bob {  
    disk      d;
    address   10.1.1.32:7789;
    meta-disk f;
    node-id 1;
  }
  
}