Kerberos Ticket Manager
Project description
Kerberos Ticket Manager
Simple kinit wrapper to update Kerberos ticket periodically for long running application.
Getting Started
Periodical kerberos ticket update
from krbticket import KrbTicket
ticket = KrbTicket.init("<principal>", "<keytab path>")
ticket.updater_start()
If keytab path
is not specifyed, kinit uses KRB5_KTNAME
env, or /etc/krb5.keytab
to find a keytab file. see: kerberos(1) and kinit(1).
Ticket Updater Strategies
To avoid a credential cache (ccache) corruption by concurrent updates from multiple processes, KrbTicketUpdater has a few update strategies:
- SimpleKrbTicketUpdater: for single updater process, or multiple updaters w/ per process ccache. (default)
- MultiProcessKrbTicketUpdater: for multiple updater processes w/ exclusive file lock
- SingleProcessKrbTicketUpdater: for multiple updater processes w/ exclusive file lock to restrict the number of updater processes to one against the ccache
from krbticket import KrbTicket, SingleProcessKrbTicketUpdater
ticket = KrbTicket.init("<principal>", "<keytab path>", updater_class=SingleProcessKrbTicketUpdater)
ticket.updater_start()
Retry
krbticket supports retry feature utilizing retrying which provides various retry strategy. To change the behavior, pass the options using retry_options
of KrbConfig. The dafault values are:
- wait_exponential_multiplier = 1000
- wait_exponential_max = 30000
- stop_max_attempt_number = 10
from krbticket import KrbTicket
retry_options = {
'wait_exponential_multiplier': 1000,
'wait_exponential_max': 10000,
'stop_max_attempt_number': 5
}
ticket = KrbTicket.init("<principal>", "<keytab path>", retry_options=retry_options)
ticket.updater_start()
Update Interval
TBD
Test
docker run --rm -p 88:88 ksauzz/docker-krb5:0.0.1
pip install -r requirements-test.txt -r requirements.txt
KRB5_CONFIG=tests/conf/krb5.conf.local pytest
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file krbticket-1.0.6.tar.gz
.
File metadata
- Download URL: krbticket-1.0.6.tar.gz
- Upload date:
- Size: 11.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f3eff7f3089ba5a7753be0644380e2d605b2124a53628789e41b2ee24b77c810 |
|
MD5 | 005467d3c0a30badaa36714835d465bd |
|
BLAKE2b-256 | b2ded00159986d398da6da07253a392f324e880e758b21bf1478e0e6c6371cf2 |
File details
Details for the file krbticket-1.0.6-py3-none-any.whl
.
File metadata
- Download URL: krbticket-1.0.6-py3-none-any.whl
- Upload date:
- Size: 7.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b3c3a387e44813e40014b341e4397573484923d7cca93584ffa75a185fec8c84 |
|
MD5 | 7139d066a7f9f105c1b71fa349ac85bf |
|
BLAKE2b-256 | 7106bfe8ad74a858255414a5a9e561e43bd000650645551969e41fe211cc86f1 |