-
Notifications
You must be signed in to change notification settings - Fork 78
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
Whether it support user management? #94
Labels
Comments
Hi, Can you please elaborate what you need. The nfs4j has an interface for user identity management but implantation are up to servers which use it. Our production server uses LDAP. |
@kofemann ,yes,I need to upload file to the nfs,and used by various people at the same time,I want the library can support it |
Well, as long as your backed file system supports multiple UIDs, it's
simple:
```
@OverRide
public Inode create(Inode parent, Stat.Type type, String path, Subject
subject, int mode)
throws IOException {
int uid = (int) UnixSubjects.getUid(subject);
int gid = (int) UnixSubjects.getPrimaryGid(subject);
....
```
…-kofemann
/** caffeinated mutations of the core personality */
On Fri, Oct 23, 2020 at 5:04 PM yangjinlogic ***@***.***> wrote:
@kofemann <https://github.com/kofemann> ,yes,I need to upload file to the
nfs,and used by various people at the same time,I want the library can
support it
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#94 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAEMTXPPOCVV2MNEY2H7CGTSMGLPFANCNFSM4S4LIRCQ>
.
|
@kofemann thanks for your response,why I cant clone this project? |
Huh... What error do you get?
…On Fri, Oct 23, 2020, 18:21 yangjinlogic ***@***.***> wrote:
@kofemann <https://github.com/kofemann> thanks for your response,why I
cant clone this project?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#94 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAEMTXOHN4EXKD23XVC7B2LSMGUO5ANCNFSM4S4LIRCQ>
.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No description provided.
The text was updated successfully, but these errors were encountered: