Daniel
Daniel

Reputation: 1

Setting up Kerberos authentication on an apache2 Web Server

I'm trying to set up a web server that will authenticate users using kerberos before displaying the page to the user. I've followed some online instructions but when I reach the webpage and type in my credentials, the page will just reload the login window again, and make me login again. If I hit cancel on the login window, it shows me a 401 Error page saying I am not authorized to access the page. It seems like my kerberos is not set up properly, but I have no way to tell. Any help would be appreciated

Upvotes: 0

Views: 438

Answers (1)

Michael-O
Michael-O

Reputation: 18430

What did you set up? You will require:

  1. mod_auth_kerb configured in apache
  2. a machine account for the server
  3. an exported keytab for the server
  4. a SPNEGO-capable client

Upvotes: 1

Related Questions