Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added missing parameter to docker run command #2566

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/user_doc/vic_vsphere_admin/volume_stores.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ ERROR op=363.7: dial tcp <i>nfs_server</i>:111: getsockopt: connection refused
After you deploy a VCH, you can test that an NFS share point is configured correctly so that containers can access it by running the following commands:

<pre>docker volume create --name test --opt VolumeStore=nfs
docker run -it test:/mnt/test alpine /bin/ash</pre>
docker run -it -v test:/mnt/test alpine /bin/ash</pre>

You can also test the configuration mounting the NFS share point directly in the VCH endpoint VM. For information about how to perform this test, see [Install Packages in the Virtual Container Host Endpoint VM](vch_install_packages.md) and [Mount an NFS Share Point in the VCH Endpoint VM](vch_mount_nfsshare.md).

Expand Down Expand Up @@ -187,4 +187,4 @@ This example `vic-machine create` command deploys a VCH with 3 volume stores:

## Troubleshooting <a id="troubleshooting"></a>

VCHs require datastores to be writable. For information about how to check whether a shared NFS datastore is possibly mounted as read-only, see [VCH Deployment with a Shared NFS Datastore Fails with an Error About No Single Host Being Able to Access All Datastores](ts_datastore_access_error.md).
VCHs require datastores to be writable. For information about how to check whether a shared NFS datastore is possibly mounted as read-only, see [VCH Deployment with a Shared NFS Datastore Fails with an Error About No Single Host Being Able to Access All Datastores](ts_datastore_access_error.md).