6.3.1 drbd.conf: Difference between revisions

From SambaWiki
No edit summary
 
No edit summary
 
Line 1: Line 1:
[[1.0: Configuring Samba]]
'''6.3.1: drbd.conf'''

[[2.0: Configuring LDAP]]

[[3.0: Initialization LDAP Database]]

[[4.0: User Management]]

[[5.0: Heartbeat HA Configuration]]

[[6.0: DRBD]]

[[7.0: BIND DNS]]

----


<u>'''Table of Contents'''</u>
[[6.1 Requirements]]

[[6.2 Installation]]

[[6.3 Configuration]]

[[6.3.1 drbd.conf]]

[[6.3.2 Initialization]]

[[6.4 Testing]]






Latest revision as of 13:52, 25 January 2007

1.0: Configuring Samba

2.0: Configuring LDAP

3.0: Initialization LDAP Database

4.0: User Management

5.0: Heartbeat HA Configuration

6.0: DRBD

7.0: BIND DNS



Table of Contents

6.1 Requirements

6.2 Installation

6.3 Configuration

6.3.1 drbd.conf

6.3.2 Initialization

6.4 Testing


Create this file on both you master and slave server, it should be identical however it is not a requirement. As long as the partition size is the same any mount point can be used.


Step1

The below file is fairly self explanatory, you see the real disk link to the DRBD kernel module device.

[root@node1]# vi /etc/drbd.conf

# Datadrive (/data) /dev/hdd1 80GB

resource drbd1 {
 protocol C;
 disk {
   on-io-error panic;
 }
 net {
   max-buffers 2048;
   ko-count 4;
   on-disconnect reconnect;
 }
 syncer {
   rate 700000;
 }
 on node1 {
   device    /dev/drbd0;
   disk      /dev/hdd1;
   address   10.0.0.1:7789;
   meta-disk internal;
 }
 on node2 {
   device    /dev/drbd0;
   disk      /dev/hdd1;
   address   10.0.0.2:7789;
   meta-disk internal;
 }
}

Step2

[root@node1]# scp /etc/drbd.conf root@node2:/etc/