5

Can someone please advise how can we control permissions and entitlements in kdb+ to ensure the data/tables are properly access controlled?

I understand there is -U user param for specifying the user/password, but the challenge is around table level permissions.

Thanks in advance.

2 Answers2

1

You can add simple authentication by doing:

-U /path/to/password.txt

This file contains user:password where password is result of in q md5"password" and strip off 0x in front.

For more sophisticated authentication then you can change the .z.pw and .z.ac hooks

algolicious
  • 1,182
  • 2
  • 10
  • 14
0

check this paper out from First Derivatives. Might help

JPC
  • 1,891
  • 13
  • 29