While using python-kadmin to administer kerberos principals(users), I am trying to use unlock method for unlocking a user but when I call the method, the call abruptly ends and terminates the python process. There is no exception, no error of any sorts just complete shutdown of the process. Below is my code:
(Pdb) import kadmin
(Pdb) kadmin_obj = kadmin.init_with_password(app.config['KADMIN_USER'], app.config['KADMIN_PWD'])
(Pdb) kadmin_obj.unlock()
I am using docker run the process and dependencies are as follows:
yum install -y python3 python3-devel gcc krb5-devel glibc
pip3 install python-kadmin
While using python-kadmin to administer kerberos principals(users), I am trying to use unlock method for unlocking a user but when I call the method, the call abruptly ends and terminates the python process. There is no exception, no error of any sorts just complete shutdown of the process. Below is my code:
I am using docker run the process and dependencies are as follows: