本文共 5376 字,大约阅读时间需要 17 分钟。
In , a network block device is a whose content is provided by a remote machine. Typically, network block devices are used to access a storage device that does not physically reside in the local machine but on a remote one. As an example, the local machine can access a that is attached to another computer.
Technically, a network block device is realized by two components. In the client machine, where the device node is to work, a kernel module named nbd
controls the device. Whenever a program tries to access the device, this kernel module forwards the request to the server machine, where the data physically resides.
On the server machine, requests from the client are handled by a userspace program called nbd-server
. This program is not implemented as a kernel module because all it has to do is to serve network requests, which in turn just requires regular access to the server filesystem.
If the file /tmp/xxx
on ComputerA has to be made accessible on ComputerB, one performs the following steps:
On ComputerA:
nbd-server 2000 /tmp/xxx
On ComputerB:
modprobe nbdnbd-client ComputerA 2000 /dev/nbd0
The file is now accessible on ComputerB as device /dev/nbd0
. If the original file was for example a , it could be mounted for example via mount /dev/nbd0 /mnt/whatever
.
The command modprobe nbd
is not necessary if module loading is done automatically. Once the module is in the kernel, nbd-client
is used to send commands to it, such as associating a given remote file to a given local nb device. To finish using /dev/nbd0
, that is, to destroy its association with the file on other computer, one can run nbd-client -d /dev/nbd0
on ComputerB.
In this example, 2000 is the number of the server through which the file is made accessible. Any available port could be used.
The network block device client module is available on and .
Since the server is a userspace program, it can potentially run on every platform. It was ported to .
[root@150 postgresql-9.3.5]# yum install -y nbdLoaded plugins: fastestmirror, refresh-packagekit, security, versionlockLoading mirror speeds from cached hostfileepel/metalink | 5.4 kB 00:00 * base: mirrors.skyshe.cn * epel: mirrors.ustc.edu.cn * extras: mirrors.163.com * updates: centos.mirror.cdnetworks.combase | 3.7 kB 00:00 extras | 3.3 kB 00:00 updates | 3.4 kB 00:00 updates/primary_db | 5.3 MB 00:21 Setting up Install ProcessResolving Dependencies--> Running transaction check---> Package nbd.x86_64 0:2.9.20-7.el6 will be installed--> Finished Dependency ResolutionDependencies Resolved==================================================================================================================================== Package Arch Version Repository Size====================================================================================================================================Installing: nbd x86_64 2.9.20-7.el6 epel 43 kTransaction Summary====================================================================================================================================Install 1 Package(s)Total download size: 43 kInstalled size: 83 kDownloading Packages:nbd-2.9.20-7.el6.x86_64.rpm | 43 kB 00:00 Running rpm_check_debugRunning Transaction TestTransaction Test SucceededRunning Transaction Installing : nbd-2.9.20-7.el6.x86_64 1/1 Verifying : nbd-2.9.20-7.el6.x86_64 1/1 Installed: nbd.x86_64 0:2.9.20-7.el6 Complete!包含的内容 :
[root@150 postgresql-9.3.5]# rpm -ql nbd/usr/bin/nbd-server/usr/sbin/nbd-client/usr/share/doc/nbd-2.9.20/usr/share/doc/nbd-2.9.20/README/usr/share/doc/nbd-2.9.20/cliserv.h/usr/share/doc/nbd-2.9.20/nbd-tester-client.c/usr/share/doc/nbd-2.9.20/simple_test/usr/share/man/man1/nbd-server.1.gz/usr/share/man/man5/nbd-server.5.gz/usr/share/man/man8/nbd-client.8.gz[参考]
转载地址:http://hbzel.baihongyu.com/