सर्वर दुनिया | गोपनीयता नीति | सहायता / संपर्क करें |
21053 / 120656152
|
GlusterFS : GlusterFS क्लाइंट2024/05/01 |
GlusterFS वॉल्यूम माउंट करने के लिए GlusterFS क्लाइंट को कॉन्फ़िगर करें।
|
|
[1] | GlusterFS नेटिव के साथ माउंट करने के लिए, निम्नानुसार सेट करें। नीचे दिया गया उदाहरण [vol_distributed] वॉल्यूम को [/mnt] पर माउंट करना दिखाता है। |
root@client:~#
apt -y install glusterfs-client # क्लस्टर में किसी भी लक्ष्य नोड को निर्दिष्ट करना ठीक है root@client:~# mount -t glusterfs node01.srv.world:/vol_distributed /mnt
df -hT Filesystem Type Size Used Avail Use% Mounted on tmpfs tmpfs 392M 1.1M 391M 1% /run /dev/mapper/ubuntu--vg-ubuntu--lv ext4 28G 6.1G 20G 24% / tmpfs tmpfs 2.0G 0 2.0G 0% /dev/shm tmpfs tmpfs 5.0M 0 5.0M 0% /run/lock /dev/vda2 ext4 2.0G 95M 1.7G 6% /boot tmpfs tmpfs 392M 12K 392M 1% /run/user/0 node01.srv.world:/vol_distributed fuse.glusterfs 55G 13G 40G 25% /mnt # पढ़ने और लिखने का सत्यापन करें root@client:~# echo "Gluster write test" > /mnt/testfile.txt root@client:~# cat /mnt/testfile.txt Gluster write test |
Sponsored Link |
|