How to get your kerberos tickets being used in Google Chrome on Mac OS 10.11 El Capitan for a selected domain

With MacOS 10.11 (El Capitan) (maybe even 10.10 not sure about this) you run the following commands in your Terminal:

$ defaults write com.google.Chrome AuthServerWhitelist "*.example.com"
$ defaults write com.google.Chrome AuthNegotiateDelegateWhitelist "*.example.com" 

Then you restart (if it is running) Google Chrome and et voila it should accept the Kerberos ticket on your system.

This should persist updates.

HTH :-)

 
11
Kudos
 
11
Kudos

Now read this

Using MySQL / MariaDB via SSH in Golang

In this post I will show how easy it is to connect to MySQL/MariaDB on a server via SSH using the local SSH-AGENT or password package main import ( "database/sql" "fmt" "net" "os" "github.com/go-sql-driver/mysql"... Continue →