Kdb +: how to manage permissions and rights

Can someone please tell us how we can control permissions and rights in kdb + to ensure proper access to data / tables?

I understand that there is a -U user parameter to specify the user / password, but the problem is related to permissions at the table level.

Thanks in advance.

+5
source share
2 answers

You can add simple authentication by doing:

-U /path/to/password.txt

This file contains the user: password, in which the password is obtained in q md5 "password" and disabled 0x in front.

For more complex authentication, you can change the hooks .z.pwand.z.ac

+1
source

check out this first derivative document . May I help

0
source

All Articles