• TechOps

    Need clarity?
    Chat with our experts now

    • Web Hosting SupportWeb Hosting Support
    • Helpdesk Support

      Skilled and professional 24/7 helpdesk support

    • Product Support

      Boost your product support with our expertise

    • Managed ServicesManaged Services
    • Server Management

      Don't let server issues slow you down. Let us manage them for you

    • Server Monitoring

      Safeguard your server health with our comprehensive monitoring solutions

    • Staff AugmentationStaff Augmentation
    • Hire an Admin

      Transform your business operations with our expert administrative support

    • Hire a Team

      Augment your workforce with highly skilled professional from our diverse talent pool

  • CloudOps

    Confused?
    Discuss with our sales team now.

    • Author ProfileAWS
      Well Architected Review
    • Author ProfileFinOps As a Service

      FinOps As a Service

    • Migrate

      Upgrade the journey: Migrate & Modernize seamlessly

    • Modernize

      Effortless CloudOps mastery for seamless cloud management

    • Optimize

      Efficient CloudOps: Boosting performance through optimization

    • Manage

      Simplify compliance complexities with our dedicated service

  • DevOps

    How Supportsages
    is creating an
    impact?

    View Casestudies
    • Author Profile24/7 DevOps As a Service

      Round-the-clock DevOps for uninterrupted efficiency

    • Author ProfileCI/CD Pipeline

      Automated CI/CD pipeline for seamless deployments

    • Author ProfileInfrastructure As a Code

      Crafting infrastructure with ingenious code

    • Author ProfileDevSecOps

      Integrated security in continuous DevOps practices

    • Author ProfileHire DevOps Engineers

      Level up your team with DevOps visionaries

    • Author ProfileConsulting Services

      Navigate success with expert DevOps consulting

  • SecOps

    Expert SecOps Services
    for any Scale

    • Author ProfileVAPT

      Vulnerability Assessment and Penetration Testing

    • Author ProfileSource Code Review

      Ensuring source code security and safe practices to reduce risks

    • Author ProfileSecurity Consultation

      On demand services for improving server security

    • Author ProfileSystem Hardening

      Reduced vulnerability and proactive protection

    • Author ProfileManaged SOC

      Monitors and maintains system security. Quick response on incidents

    • Author ProfileCompliance as a Service

      Regulatory compliance, reduced risk

  • Insights

    Explore our latest
    insights and resources

    Blog

    Explore our latest articles and insights

    Case Studies

    Read about our client success stories

  • Contact Us

  • About
  • Certifications
  • Life at Supportsages
  • Events
  • Contact
  • Careers
  • Blog

  • Dedicated Support Team
  • Quasi-dedicated Support Team
  • Hire a DevOps Engineer
  • Hire a Billing Support Staff
  • Per-ticket Support Plan
  • Managed Services

  • Microsoft Azure Expert
  • AWS Cloud Expert
  • Hire a developer
SS

SupportSages

Bites of wisdom @ work


Copyright © 2008 - 2026 SupportSages Pvt Ltd. All Rights Reserved.
Privacy PolicyLegal TermsData ProtectionCookie Policy

How to setup a Network RAID aka Distributed Replicated Block Device [DRBD]

Scott S

  • 4 min read
How to setup a Network RAID aka Distributed Replicated Block Device [DRBD]

Generating audio, please wait...

Distributed Replicated Block Device (DRBD)  or network raid mirrors block devices between multiple hosts. A block device is the type of device used to represent storage in the Linux Kernel. All physical disk devices present a block device interface. DRBD mirrors a partition between two machines allowing only one of them to mount it at a time.  The replication is transparent to other applications on the host systems. Any block device hard disks, partitions, RAID devices, logical volumes, etc can be mirrored. DRBD currently supports all the major flavors of Linux and comes bundled in several major Linux distributions. DRBD is licensed under the GPL. DRBD is one of the most commonly used mirroring technique in industries\Organizations.

Here I’m configuring DRBD between two block devices /dev/sda1 and /dev/sda2 for two hosts with hostname sage1.supportsages.com(192.168.1.xxx) and sage2.supportsages.com(192.168.1.yyy) respectively having Ext4 file system. The partition size is not particularly relevant, but both partitions need to be the same size. To get started using DRBD, first, install the necessary packages on both hosts.

From a Linux terminal enter:

root@sage1:]# sudo apt-get install drbd8-utils
root@sage2:]# sudo apt-get install drbd8-utils

[Note that I’m installing drbd8-utils package on both the hosts]

If you are using the virtual kernel as part of a virtual machine you will need to manually compile the DRBD module. It will be easier to install the Linux-server package inside the virtual machine.

CONFIGURATION:

Make sure that the two hosts have name resolution configured either through DNS or the /etc/hosts file.

To configure DRBD, on the first host (sage1.supportsages.com) edit /etc/drbd.conf:

root@sage1:]# vi /etc/drbd.conf

—————————————————–
include “drbd.d/global_common.conf”;
include “drbd.d/*.res”;

resource r0 {
protocol C;
startup {
wfc-timeout 15;
degr-wfc-timeout 60;
become-primary-on sage1.supportsages.com;
}
net {
cram-hmac-alg sha1;
shared-secret “secret”;
max-buffers 8000;
max-epoch-size 8000;
sndbuf-size 0;
}
on sage1.supportsages.com {
device /dev/drbd0;
disk /dev/sda1;
address 192.168.1.xxx:7788;
meta-disk internal;
}
on sage2.supportsages.com {
device /dev/drbd0;
disk /dev/sda2;
address 192.168.1.yyy:7788;
meta-disk internal;
}
}

—————————————————–

As you can see in the above configuration that the mirroring is configured between the block device /dev/sda1 of sage1.supportsages.com and /dev/sda2 of sage2.supportsages.com. Here, device file  /dev/drbd0 is the DRBD block device.

There are many other options/configurations in /etc/drbd.conf, but for this example their default values are fine.

Now copy /etc/drbd.conf to our second host sage2.supportsages:

root@sage1:]# scp /etc/drbd.conf [email protected]:/etc/

Now using the drbdadm utility initialize the meta data storage. On each server execute:

root@sage1:]# drbdadm create-md r0
root@sage2:]# drbdadm create-md r0

Next, on both hosts, start the drbd daemon:

root@sage1:]# /etc/init.d/drbd start
root@sage2:]# /etc/init.d/drbd start

On sage1.supportsages.com, or whichever host you wish to be the primary, enter the following:

root@sage1:]# drbdadm — –overwrite-data-of-peer primary all

After executing the above command, the data will start syncing with the secondary host. To watch the progress, on drbd02 enter the following:

root@sage1:]# watch -n1 cat /proc/drbd

To stop watching the output press Ctrl+c.

Now that we have a working DRBD. Its time we mount the DRBD block device to a partition and see if the mirroring is fine.

For that add a filesystem to /dev/drbd0 and mount it:
root@sage1:]# mkfs.ext4 /dev/drbd0
root@sage1:]# mount /dev/drbd0 /home

TESTING:

To test that the data is actually syncing between the hosts copy some files on the sage1.supportsages.com, the primary, to /home:

root@sage1:]# cp -r /etc/default /home

Next, unmount /home:

root@sage1:]# umount /home

Demote the primary server to the secondary role because DRBD mirrors a partition between two machines allowing only one of them to mount it at a time.

root@sage1:]# drbdadm secondary r0

Now on the secondary server(sage2.supportsages.com) promote it to the primary role:

root@sage1:]# drbdadm primary r0

Lastly, mount the partition:

root@sage2:]# mount /dev/drbd0 /home

Using ls(list) command you should see /home/default copied from the former primary host sage1.supportsages.com to the current primary sage2.supportsages.com.

For advanced building, installing and configuring DRBD follow http://www.drbd.org/docs/install .

  • General
  • Howtos
  • Linux
  • Special Offers
  • VPS

Looking for AWS Experts?

We provide top-of-the-line custom AWS setup services tailored to your needs.

How to setup a Network RAID aka Distributed Replicated Block Device [DRBD]

All you want to know about Asterisk – Asterisk PBX – Part 3

All you want to know about Asterisk – Asterisk PBX – Part 3
  • Linux
logo

All you want to know about Asterisk – VoIP system architecture – Part 2

All you want to know about Asterisk – VoIP system architecture – Part 2
  • Howtos
  • Linux
logo

All you want to know about Asterisk – VoIP Fundamentals – Part 1

All you want to know about Asterisk – VoIP Fundamentals – Part 1
  • Howtos
  • Linux
logo

Asterisk Setup – Frequently Asked Questions and Answers

Asterisk Setup – Frequently Asked Questions and Answers
  • Linux
logo
Posts by Scott S

Scott follows his heart and enjoys design and implementation of advanced, sophisticated enterprise solutions. His never ending passion towards technological advancements, unyielding affinity to perfection and excitement in exploration of new areas, helps him to be on the top of everything he is involved with. This amateur bike stunting expert probably loves cars and bikes much more than his family. He currently spearheads the Enterprise Solutions and Infrastructure Consultancy wing of SupportSages.