Startup Configuration
Upon startup, kdc_agent reads the configuration file (from the default path /etc/kdc_agent/config.json) in JSON format.
Configuration File Example
{
"ip": "127.0.0.1",
"port": 26068,
"caPath": "/etc/kdc_agent/certs/ca.crt",
"certPath": "/etc/kdc_agent/certs/server.crt",
"privatePath": "/etc/kdc_agent/certs/server.key",
"crlPath": "/etc/kdc_agent/certs/ca.crl",
"raPublicKeyPath": "/etc/kdc_agent/certs/ra.pem",
"logPath": "/var/log/kdcagent.log",
"dataPath": "/var/lib/kdc_agent/data",
"logMaxSize": 10,
"logBackupCount": 5,
"minLogLevel": "info",
"plugins": [{
"name": "hisec_trustattribute",
"path": "/usr/lib64/libhisec_trustattribute.so",
"param": {}
}]
}
Parent topic: kdc_agent RPM Package Installation