From: Rich Bowen Date: Tue, 23 Nov 2004 02:05:28 +0000 (+0000) Subject: Added various examples to the dbmmanage documentation. X-Git-Tag: 2.1.2~140 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b036a8211efe977a1f3d39d79c143b52571a95d9;p=apache Added various examples to the dbmmanage documentation. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@106259 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/programs/dbmmanage.xml b/docs/manual/programs/dbmmanage.xml index fdc46cc470..af7d6edac2 100644 --- a/docs/manual/programs/dbmmanage.xml +++ b/docs/manual/programs/dbmmanage.xml @@ -26,7 +26,8 @@

dbmmanage is used to create and update the DBM format files - used to store usernames and password for basic authentication of HTTP users. + used to store usernames and password for basic authentication of HTTP users + via mod_auth_dbm. Resources available from the Apache HTTP server can be restricted to just the users listed in the files created by dbmmanage. This program can only be used when the usernames are stored in a DBM file. To @@ -107,18 +108,30 @@

add
Adds an entry for username to filename using the - encrypted password encpasswd.
+ encrypted password encpasswd. + + dbmmanage passwords.dat add rbowen foKntnEF3KSXA +
adduser
Asks for a password and then adds an entry for username to - filename.
+ filename. + + dbmmanage passwords.dat adduser krietz +
check
Asks for a password and then checks if username is in - filename and if it's password matches the specified one.
+ filename and if it's password matches the specified one. + + dbmmanage passwords.dat check rbowen +
delete
-
Deletes the username entry from filename.
+
Deletes the username entry from filename. + + dbmmanage passwords.dat delete rbowen +
import
Reads username:password entries @@ -127,11 +140,17 @@
update
Same as the adduser command, except that it makes - sure username already exists in filename.
+ sure username already exists in filename. + + dbmmanage passwords.dat update rbowen +
view
Just displays the contents of the DBM file. If you specify a - username, it displays the particular record only.
+ username, it displays the particular record only. + + dbmmanage passwords.dat view +