UNSOLVED

Davidsf1

updated

13 years ago

D

Davidsf1

5 Posts

0

1918

August 12th, 2013 08:00

Can't change Access-Policy to MIXED

I have a filesystem with default NATIVE access policy. I have a cifs and nfs export on it.

In unisphere the MIXED and MIXED_COMPAT options are greyed out so I can not select it.

In the console when trying to change with the command:

nas_fs -translate test_fs -access_policy start -to MIXED -from NATIVE

gives the error:

filesystem test_fs is not mounted with rw,accesspolicy=MIXED or rw,accesspolicy=MIXED_COMPAT options.

In unisphere file systems page the access-checking policy shows as NATIVE.

how can I change the access policy?

  • o17Uu33DCF12520

    6 Operator

    1058 Posts

    907

    2

    Posted August 12th, 2013 18:00

    As the error specified, the file system needs mounting. Try this:

    Run the following command to change the access policy:

    server_mount <server name> -option accesspolicy=<policy name> fs_name /mount point

    For example if you want to change the access policy of file system fs1 from Native to MIXED, run the command:

    server_mount server_2 -option accesspolicy=MIXED fs1 /fs1

  • Davidsf1

    5 Posts

    907

    0

    Posted August 12th, 2013 22:00

    The file system is already mounted:


    server_mount server_2 -option accesspolicy=MIXED test_fs /mnt


    Error 4109: server_2 : test_fs : is mounted on /test_fs



  • o17Uu33DCF12520

    6 Operator

    1058 Posts

    907

    0

    Posted August 12th, 2013 23:00

    No problem.

    Please mark my answer as "correct answer" if it helps.

  • Davidsf1

    5 Posts

    907

    0

    Posted August 12th, 2013 23:00

    Ok, I have figured out:

    Needs to unmount the filesystem and mount with the accesspolicy=MIXED option.

    Thansk Kevin.