|
NAMEnnmaster - nn database managerSYNOPSISnnmaster -I [lmit]nnmaster -w nnmaster -v nnmaster -l [ "lock message" ] nnmaster [ options ] [ groups ] nnmaster -F [ options ] [ groups ] DESCRIPTIONnnmaster is the daemon which is responsible for building and maintaining the database used by the nn(1) news reader.Normally, nnmaster is started when the system enters multi-user mode, and runs until system shutdown. To facilitate this, you should place the following call in /etc/rc (or similar) to invoke the nnmaster daemon: $master/nnmaster -l -r -C where $master is the MASTER_DIRECTORY defined during configuration of nn. When nnmaster is started as specified above, it will first unlock the database in case it was locked (-l), perform a thorough consistency check on the database (-C). Then, every 10 minutes (-r), it will look at the time-stamp of the news active file to see whether new articles have arrived on the system (or whether articles have been expired). (See -U) If the active file has been modified, nnmaster will collect the header information from the new articles and enter them into the database (or remove the headers of the expired articles from the database). If it detects that some articles have been expired, it will automatically remove the header information of the expired articles from the database. ARTICLE COLLECTION OPTIONSNormally, nnmaster will collect all available news groups defined in the news active file. The set of collected groups can be controlled via the argument line. Groups can be either included or excluded:A group name, e.g. comp, will cause the group and all its subgroups to be collected. Individual groups, e.g. news.software.nn, can also be specified A group name preceded by an exclamation mark, e.g. !talk.politics, will cause the group and all its subgroups to be ignored. An empty argument, i.e. "", will cause all groups that
are not ignored to be collected. For example, to collect everything but rec
and misc, use the following command:
Example 1: The following commands can be executed by cron to
collect different sets of groups at different intervals or under different
conditions:
Example 2: The group arguments are used in the given sequence,
e.g. to leave out comp.sys, but still collect comp.sys.ibm.pc, use the
command:
The use of the -u option in the first example is essential, since each of the commands will update the active file time stamp which will prevent the other command from detecting new articles that have arrived. Using this method to keep specific groups out of the database must be used with great caution; just a single invocation of nnmaster without any arguments will collect all the otherwise ignored groups! COLLECTION OF ARTICLESThe following options control how nnmaster performs the collection of new articles.
DATABASE EXPIRATIONSince articles does not stay forever in the news system, the database must be cleaned up regularly to remove the information stored for expired articles. Expiration of the database is normally scheduled using the nnadmin(1M) command executed by cron at a suitable time when expire on the news articles has completed. The following command will send a message to the nnmaster and cause it to initiate expire on all news groups:nnadmin =EYW Selective expiration of individual groups can be done from nnadmin (interactive mode). It can also be done by invoking nnmaster with the -F option. For example, the following command will run expire on all groups except the `rec' groups: nnmaster -F -k !rec "" The -k option is required to terminate the currently running master since two daemons cannot be running at the same time. Thus to run expire (on all groups) in this way from cron, the following commands must be used: nnmaster -Fk "" ; nnmaster -r ... It is also possible to have nnmaster detect expiration automatically (see -e). This requires that the min field in the active file is updated by the news expire (this is not the default case when Cnews is used). However, this is not always a safe indication since the first article may not have been expired, while a lot of other articles have been deleted. There are several strategies available in the nnmaster to do this clean-up, each having their strengths and weaknesses. Method 1 (default): Rebuilds the database from the existing database information by comparing the current database contents with the contents of the news group directories, eliminating entries whose file no longer exists. This method is guaranteed to eliminate all expired articles from the database, and it is reasonably fast because it only has to read the directories, not each article file. If news is accessed remotely via nntp, the list of existing articles cannot efficiently be fetched by reading a local directory. Instead an XHDR request is sent to the nntp server to get a list of articles. Method 2: Eliminates only the expired articles before the first article in the group. This is very fast since only the active file and the database itself is accessed, but it will obviously leave some expired articles in the database. This method requires that the min field in the active file is updated by expire. Method 3: Discard the current database information and recollects all articles. This is obviously very time consuming, and it is therefore not recommended, especially not with nntp. The options related to database expiration are:
DATABASE LOCKINGThe database can be locked centrally, which will normally disallow all access to the database, and even block nnmaster from being (accidentally) started. When a lock is set on the database, all currently running clients will terminate the next time they try to access the database. Setting a lock on the database can thus also be used to force running clients to terminate.The following options set and clear locks on the database:
Since only one nnmaster can operate on the database at any one time, a running nnmaster daemon must be stopped before a lock can be set on the database. If neither -f nor -r is specified with the -l option (in both forms), nnmaster will terminate after setting or clearing the lock. DATABASE INITIALIZATIONThe following options are used to initialize and update the central database files:
MISCELLANEOUS OPTIONSThe following options controls various details of the nnmaster's behaviour:
THE GROUPS FILEThe primary purpose of the GROUPS file is to store the names of the news groups represented in the database. Each line in the file corresponds to an entry in the (binary) MASTER file, and the sequence of the lines in the GROUPS file must never be changed unless the database is reinitialized afterwards.However, the contents of the lines in the GROUPS file can be edited to control how the nnmaster should handle each individual group. The format of each line is: news.group.name [ timestamp ] [ flags ] The news group name is the name of the group, and must not be changed in any way. If the group is no longer in the news active file, and consequently the group does no longer exist, group name can be replaced by a `@' character which will instruct nnmaster to ignore this entry without having to rebuild the entire database. The optional time stamp indicates when the line was added to the GROUPS file and is used by nn to detect new groups. When the GROUPS file is built initially from the active file, the time stamps are omitted which simply means that they are "old". One or more of the following flags can be added to the GROUPS line to control nnmaster's handling of the group:
Comments (starting with `#' and continuing to the end of line) and empty lines are allow in the GROUPS file, but it is strongly recommended to keep the changes to the GROUPS file as small as possible, because of the implicit correspondence with the binary MASTER file. It is not recommended to edit the GROUPS file while
nnmaster is running because it may add new groups to the file. After
editing the GROUPS file, the command
NNTP SUPPORTThe nnmaster can access the news articles from a local news spool directory as well as from an NNTP server. When compiled with NNTP enabled, nnmaster will compare the name of the NNTP server and the name of the local host; if they are identical, nnmaster will bypass NNTP and access the articles directly.When it has to access the news articles via NNTP, it cannot time-stamp the active file, so instead it transfers the entire active file from the NNTP server and compares it with a local copy of the last active file fetched from the NNTP server. This is not very expensive in terms of cpu-cycles, disk-load, or net-bandwidth, but to stay on friendly terms with the NNTP server administrator, you should probably not use shorter update intervals than the standard 10 minutes. Setting a much higher update interval than the standard 10 minutes is not really recommended either, since an update normally implies fetching a burst of news articles from the NNTP server, so setting the interval too long may imply that the load on the NNTP server will be more un-even. In expire method 1, the use of XHDR just to get a list of existing articles in a group is definitely a waste of resources on the nntp server (but still lower than using method 3). Before using the XHDR request, nnmaster will send a non-standard "LISTGROUP" request; if the nntp server supports this request, it should return an OK_HEAD status followed by an (unordered) list of article numbers (one per line) terminated by a `.' line. The nntp servers supporting this request will be much less loaded during expire. The -O option does not work with NNTP. The -B option will only work with NNTP if the nnmaster is running on the NNTP server. FILESThe $db, $master, and $news names used below are synonyms for the DB_DIRECTORY, MASTER_DIRECTORY, and NEWS_LIB_DIRECTORY defined during configuration.$db/MASTER Database master index
The MASTER file contains a record for each news group, occurring in the same sequence as the group names in the GROUPS file. The sequence also defines the group numbers used to identify the files in the database's DATA directory. The GATE file will be created by nnadmin when needed, and removed by nnmaster when it has read it. Therefore, to send a message to the nnmaster requires that you are allowed to write in the $master directory. The contents of the Log file are described in the nnadmin manual. SEE ALSOnn(1), nncheck(1), nngrep(1), nntidy(1)nnadmin(1M), nnspew(8), nnusage(1M) AUTHORKim F. Storm, Texas Instruments A/S, DenmarkE-mail: storm@texas.dk
Visit the GSP FreeBSD Man Page Interface. |