Results 1 to 4 of 4

Thread: Kerberos Problem

  1. #1
    Join Date
    Apr 2010
    Beans
    1

    Kerberos Problem

    Hi-

    So I was trying to configure my CUPS server and checked the box marked "Use Kerberos Authentication." Now, I cannot change anything and get an unauthorized error every time I try. How can I remove Kerberos? I have access to the local computer as root and can use sudo.

    Thanks

  2. #2
    Join Date
    Jan 2009
    Beans
    26

    Re: Kerberos Problem

    Man look at:
    Code:
    $sudo vim /etc/cups/cupsd.conf
    and try to find some like "Kerberos Authentication" and delete it.

  3. #3
    Join Date
    Apr 2010
    Beans
    1

    Re: Kerberos Problem

    I did the same thing exactly. now I can't undo it. How can CUPs be unhooked from kerboros?

    There's nothing in cupsd.conf

    thanks in advance

  4. #4
    Join Date
    Jan 2011
    Location
    Izmir, Turkey
    Beans
    2

    Re: Kerberos Problem

    Hello,
    i have just bumped into that problem by accidentally switching the check box `Kerberos Auth.` in the cups web interface http//:localhost:631,

    after that, to alter the behavior manually, i tried to look into /etc/cups/cupsd.conf file for the word `Kerberos` but no related words in there,

    The documentation of cupsd.conf says that `Kerberos Authentication` is denoted with `Negotiate` keyword and making cups to use local groups and user passwds is denoted with `Basic`, so i changed the
    defalt authentication to `Basic`, changing the line below;

    ...
    DefaultAuthType Negotiate # old one,
    ...

    ...
    DefaultAuthType Basic # new one,
    ...

    The rest of the regions requiring authentication in cupsd.conf file uses Default authentication method, so changing the default method yields changing all of them, i.e.,

    ...
    <Location /admin/conf>
    AuthType Default
    ...

    After that i killed the cups daemon and performed a re-start,

    # sudo cupsd

    Now it worked for me and i can use username: root and pass: <my-root-passwd> to administrate the server.

    Regards,

    gokhankelle.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •