Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Kdb+ : how to control permissions and entitlements

Tags:

kdb

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.

like image 711
user1624847 Avatar asked Nov 12 '22 23:11

user1624847


1 Answers

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

like image 131
algolicious Avatar answered Dec 07 '22 23:12

algolicious