rigoletto@
Developer
Hello,
I am trying to run security/heimdal (Master/Slave) in jail but it fail to initialize the database with error:
Thought, the database is there but it have .db at the end: /var/heimdal/heimdal.db
I found a old PR 154711 about the exactly same problem. Is it prossible to be the same thing? Or there is something wrong with my configuration?
Options:
Thank you!
I am trying to run security/heimdal (Master/Slave) in jail but it fail to initialize the database with error:
Code:
kadmin: hdb_open: hdb_open: failed initialize database /var/heimdal/heimdal
Thought, the database is there but it have .db at the end: /var/heimdal/heimdal.db
I found a old PR 154711 about the exactly same problem. Is it prossible to be the same thing? Or there is something wrong with my configuration?
cat /usr/local/etc/krb5.conf
Code:
[libdefaults]
default_realm = MYDOMAIN.CH
[realms]
MYDOMAIN.CH = {
kdc = krb1.mydomain.ch
kdc = krb2.mydomain.ch
admin_server = krb1.mydomain.ch
}
[domain_realm]
.mydomain.ch = MYDOMAIN.CH
cat /etc/rc.conf
Code:
(...)
hostname="krb1.mydomain.ch"
kdc_enable="YES"
kadmind_enable="YES"
kdc_program="/usr/local/libexec/kdc"
kadmind5_server="/usr/local/libexec/kadmind"
kpasswdd_server="/usr/local/libexec/kpasswdd"
(...)
Options:
Code:
_OPTIONS_READ=heimdal-1.5.3_5
_FILE_COMPLETE_OPTIONS_LIST=BDB CRACKLIB DIGEST IPV6 KX509 LDAP PKINIT SQLITE X11
OPTIONS_FILE_SET+=BDB
OPTIONS_FILE_UNSET+=CRACKLIB
OPTIONS_FILE_SET+=DIGEST
OPTIONS_FILE_UNSET+=IPV6
OPTIONS_FILE_SET+=KX509
OPTIONS_FILE_SET+=LDAP
OPTIONS_FILE_SET+=PKINIT
OPTIONS_FILE_UNSET+=SQLITE
OPTIONS_FILE_UNSET+=X11
Thank you!