mirror of
https://github.com/gluster/glusterdocs.git
synced 2026-02-05 15:47:01 +01:00
Fix quick start test (#767)
The quick start test mounted to /mnt instead of a sub-directory to it which can cause problems. Co-authored-by: Fredrik Carlbom <fredrik.carlbom@sectra.com>
This commit is contained in:
@@ -222,14 +222,15 @@ be installed on the client machine, we will use one of the servers as
|
||||
a simple place to test first , as if it were that "client".
|
||||
|
||||
```console
|
||||
mount -t glusterfs server1:/gv0 /mnt
|
||||
for i in `seq -w 1 100`; do cp -rp /var/log/messages /mnt/copy-test-$i; done
|
||||
mkdir /mnt/gluster-test
|
||||
mount -t glusterfs server1:/gv0 /mnt/gluster-test
|
||||
for i in `seq -w 1 100`; do cp -rp /var/log/messages /mnt/gluster-test/copy-test-$i; done
|
||||
```
|
||||
|
||||
First, check the client mount point:
|
||||
|
||||
```console
|
||||
ls -lA /mnt/copy* | wc -l
|
||||
ls -lA /mnt/gluster-test/copy* | wc -l
|
||||
```
|
||||
|
||||
You should see 100 files returned. Next, check the GlusterFS brick mount
|
||||
|
||||
Reference in New Issue
Block a user