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

NFS3 mount #3

Open
nkorobko opened this issue Aug 16, 2022 · 0 comments
Open

NFS3 mount #3

nkorobko opened this issue Aug 16, 2022 · 0 comments

Comments

@nkorobko
Copy link

Hi,

I have deployed this image with the default configuration and successfully mounted the volume.

`cat /etc/ganesha/ganesha.conf

EXPORT
{
# Export Id (mandatory, each EXPORT must have a unique Export_Id)
Export_Id = 77;

            # Exported path (mandatory)
            Path = /export;

            # Pseudo Path (for NFS v4)
            Pseudo = /;

            # Access control options
            Access_Type = RW;
            Squash = No_Root_Squash;
            Root_Access = "*";
            Access = "*";

            # NFS protocol options
            Transports = "UDP,TCP";
            Protocols = "3,4";

            SecType = "sys";

            # Exporting FSAL
            FSAL {
                    Name = VFS;
            }

}`

mount command: mount -t nfs -o proto=tcp,port=2049 *************.elb.amazonaws.com:/ /mnt/f/
The mount type was nfs4

Tried to mount with vers=3 command without any success.

Then, redeployed the nfs-server with the following config:
env: - name: GANESHA_TRANSPORTS value: "TCP" - name: GANESHA_NFS_PROTOCOLS value: "3"
Didn't help
Tried to change the mount command with adding "/export" also didn't help

How can I mount type nfs3?

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant