Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
DKP(8)			     System Manager's Manual			  DKP(8)

NAME
     dkp - Diablo program to manage DKP databases

SYNOPSIS
     dkp [-x] [-r] [-w] [-d] [-s] [-t] filename [key [tok=data]] [ < input ]

DESCRIPTION
     DKP  manages  KP databases.  Currently Diablo has only one KP database, the
     active file, called dactive.kp.  issues a	command  to  the  parent  diablo
     server.   The command allows a key and optional tok=data (for writes) to be
     specified on the command line.  If no key/data is specified, DKP takes  key
     or  key  tok=data	lines from the standard input.	The data may not contain
     spaces, tabs, or newlines.

     -x - cause the specified key (or keys on stdin, one per line) to be deleted
     from the database.

     -r - lookup the specified key and print the record.

     -w - write the specified tok=data to the database for the record  specified
     by the given key.	A record can have multiple tokens associated with it but
     DKP currently accepts only one at a time.

     -d - Turn on debugging

     -s  - Force the KP database to be sorted in-place.  This option is not nor-
     mally necessary, but is useful as a safety precaution if  you  believe  the
     database has been manually edited.

     -t  -  Trim the KP database, removing dead records.  This will only work if
     no other processes have the specified KP database open.  It should be  done
     on  dactive.kp once a month.  If you are generating a fresh dactive.kp from
     some other source, always run dkp -t on it to clear out all  the  temporary
     junk.   filename - specify the name of the KP database file.  This is a re-
     quired parameter.

General KP database maintenance
     KP databases can be manually edited, but only if there are no active refer-
     ences.  If you have an editor capable of performing an flock, such as  nvi,
     your  editor will warn you if other processes have active references to the
     database because the database code maintains several locks on the	database
     file.

     KP  databases can be replaced by generating a new copy and renaming it over
     the old, but if active references exist they will continue to work  on  the
     old, possibly until they close.  Since the diablo reader code leaves active
     opens  on	the  dactive.kp database, you should use only the dkp program to
     fix it unless you shut down the reader entirely.

     KP databases handle changes in record size by marking  the  old  record  as
     deleted  (a  '-'  instead of a '+') and appending a new record.  This means
     that garbage can collect in the database file.  The garbage can  be  pruned
     safely with 'dkp -t'.  DO NOT USE A GREP/RENAME TO PRUNE A KP DATABASE!

     Diablo gives instructions on how to prune its various KP databases by exam-
     ple, usually in the adm/ or samples/ directory.

SEE ALSO
     diablo(8),  dicmd(8),  didump(8),	diload(8),  dnewslink(8), doutq(8), dex-
     pire(8), dexpireover(8), diconvhist(8), dilookup(8), dspoolout(8),  dkp(8),
     dpath(8), diablo-kp(5), diablo-files(5)

									  DKP(8)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=dkp&sektion=8&manpath=FreeBSD+Ports+15.1.quarterly>

home | help