I was following the installation online guide.<br>The metadata is created successfully by &quot;drbdadm create-md r0.&quot; <br>However When I was trying to attach the resource by using &quot;drbdadm attach r0&quot; command, it gave me this error message:<br>
Could not stat(&quot;/proc/drbd&quot;): No such file or directory
<br>do you need to load the module?
<br>try: modprobe drbd
<br>Command &#39;drbdsetup 0 /dev/drbd0 disk /dev/sda7 /dev/sda7 internal
--set-defaults --create-device&#39; terminated with
exit code 20
<br>drbdadm attach r0: exited with code 20
<br><br><br>My /etc/drbd.conf is<br>global {<br>  usage-count yes;<br>}<br>common {<br>  protocol C;<br>}<br>resource r0 {<br>  on node1 {<br>    device    /dev/drbd0;<br>    disk      /dev/sda7;<br>    address   <a href="http://192.168.0.1:7789">192.168.0.1:7789</a>;<br>
    meta-disk internal;<br>  }<br>  on node2 {<br>    device    /dev/drbd0;<br>    disk      /dev/sda7;<br>    address   <a href="http://192.168.0.2:7789">192.168.0.2:7789</a>;<br>    meta-disk internal;<br>  }<br>}<br><br>
I am using drbd-8.3.2-6.2.x86_64.rpm on SLES10 sp2 64bits and I have a partition /dev/sda7 on both my two linux machine,  192.168.0.1 and 192.168.0.2 can ping to each other.<br><br>What could be the problem? any idea or suggestions is welcome, thanks.<br>
<br><br>