From 2fd2efaa8584502de37826fbebc5fe1331ba7f40 Mon Sep 17 00:00:00 2001 From: Bernie Hackett Date: Thu, 3 Apr 2014 11:01:34 -0700 Subject: [PATCH] Mention the pykerberos module, which supports python 3. --- doc/examples/authentication.rst | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/doc/examples/authentication.rst b/doc/examples/authentication.rst index ef1da328d..7c381d16e 100644 --- a/doc/examples/authentication.rst +++ b/doc/examples/authentication.rst @@ -82,8 +82,8 @@ GSSAPI (Kerberos) GSSAPI (Kerberos) authentication is available in the Enterprise Edition of MongoDB, version 2.4 and newer. To authenticate using GSSAPI you must first -install the python `kerberos module`_ using easy_install or pip. Make sure -you run kinit before using the following authentication methods:: +install the python `kerberos`_ or `pykerberos`_ module using easy_install or +pip. Make sure you run kinit before using the following authentication methods:: $ kinit mongodbuser@EXAMPLE.COM mongodbuser@EXAMPLE.COM's Password: @@ -126,10 +126,11 @@ specify a custom service name with the ``gssapiServiceName`` option:: .. note:: Kerberos support is only provided in environments supported by the python - `kerberos module`_. This currently limits support to CPython 2.x and Unix - environments. + `kerberos`_ or `pykerberos`_ modules. This currently limits support to + CPython and Unix environments. -.. _kerberos module: http://pypi.python.org/pypi/kerberos +.. _kerberos: http://pypi.python.org/pypi/kerberos +.. _pykerberos: https://pypi.python.org/pypi/pykerberos SASL PLAIN (RFC 4616) ---------------------