SCROLLKEEPER-REBUILDDB(8) System Manager's Manual SCROLLKEEPER-REBUILDDB(8)NAME
scrollkeeper-rebuilddb - rebuild the scrollkeeper document catalog database
SYNOPSIS
scrollkeeper-rebuilddb [-p path ] [-v] [-q]
DESCRIPTION
This rebuilds the ScrollKeeper database from the original OMF metadata files and documents. Under normal situations, this tool is not nec-
essary. It is useful however if the database becomes corrupt, which could be caused by interruption of ScrollKeeper during an update of
the database.
Errors and warnings are logged to /var/log/scrollkeeper.log.
OPTIONS -p path
Use path as the ScrollKeeper database directory.
-v Verbose. Show warnings and error messages in addition to logging them to /var/log/scrollkeeper.log.
-q Run in quiet mode, suppressing output of all but the most serious warning and error messages to STDOUT. Note that most output to
the log file will be unchanged.
FILES
/var/lib/scrollkeeper/scrollkeeper_docs
/var/lib/scrollkeeper/TOC/<docnumber>
/var/lib/scrollkeeper/<locale>/scrollkeeper_cl.xml
/var/lib/scrollkeeper/<locale>/scrollkeeper_extended_cl.xml
/var/log/scrollkeeper.log
AUTHOR
Laszlo Kovacs <laszlo.kovacs@sun.com>
Dan Mueth <d-mueth@uchicago.edu>
SEE ALSO scrollkeeper-config(1), scrollkeeper-gen-seriesid(1), scrollkeeper.conf(5), scrollkeeper(7), scrollkeeper-preinstall(8), scrollkeeper-
update(8)scrollkeeper Dec 5, 2001 SCROLLKEEPER-REBUILDDB(8)
Check Out this Related Man Page
SCROLLKEEPER-CONFIG(1) General Commands Manual SCROLLKEEPER-CONFIG(1)NAME
scrollkeeper-config - print ScrollKeeper configuration information
SYNOPSIS
scrollkeeper-config [--help] [--version] [--prefix] [--localstatedir] [--pkglocalstatedir] [--pkgdatadir] [--omfdir]
DESCRIPTION
This prints out various ScrollKeeper configuration information. It is useful for application building and packaging procedures.
OPTIONS --help Show usage (help) information.
--version
Show version number.
--prefix
Outputs the prefix used to install ScrollKeeper.
--localstatedir
Outputs the localstatedir used to install ScrollKeeper.
--pkglocalstatedir
Outputs pkglocalstatedir. This is the directory under localstatedir where ScrollKeeper keeps its database.
--pkgdatadir
Outputs pkgdatadir. This is the directory under datadir where ScrollKeeper keeps its non-variable (ie. non-database) files.
--omfdir
Directory where ScrollKeeper looks for OMF files.
AUTHOR
Laszlo Kovacs <laszlo.kovacs@sun.com>
Dan Mueth <d-mueth@uchicago.edu>
SEE ALSO scrollkeeper-gen-seriesid(1), scrollkeeper.conf(5), scrollkeeper(7), scrollkeeper-preinstall(8), scrollkeeper-rebuilddb(8), scrollkeeper-
update(8)scrollkeeper Dec 5, 2001 SCROLLKEEPER-CONFIG(1)
Hi,
I am new in shell scripting.
Can anyone point out what wrong of below script.
If I want the error output to "sqlerror.log"
and database pool data output to "bulk_main.dat".
Right now, the below script, if successful execute, the data will output to
bulk_main.dat && sqlerror.log both... (7 Replies)
Hi,
I have a file which has list of files with some other info too.. say..
1/1/2008./to/path/filename1.:
...
...
something like that.. can anyone tell me how can i just open the file and read the contents and then cut just the filename1 and write it to an @array..
thanks (12 Replies)
I am looking for a script to do the following. I have a large log file that contains hundreds of warnings, a lot of which can be ignored. The tool doesn't allow me to suppress it, so I like to parse it out from the log file and isolate just the new messages/warnings, based on an exception file.
... (12 Replies)
Is it possible that I get all the syslog messages from /var/log/messages redirected to some FIFO as and when any new messages comes.
In exact, I need to duplicate the messages to a FIFO, the moment a new message is logged; from where another process reads and does some processing without... (12 Replies)
hi,
I've some log files in a path /SYSTEM/custom/data/MNP/xmlerror as:
MNP_PORT_IN_P200902191347563283_20090220181630_err_1.xml
MNP_PORT_IN_P200902171717114365_20090220211814_err_2.xml
MNP_PORT_IN_P200902191349023233_20090220181923_err_1.xml... (4 Replies)
I am working on a small columns class, since I use allot of tabular data. I am trying to set up code to allow me to efficiently read in tabular data, manipulate it, and write to output files. I more or less know what I need to do, but there are many options to sort through.
I have the beginnings... (14 Replies)
hi guys
i have this very messy script, that looks in /var/log/messages.all for an error and reports if it finds the key works
how can i get it to look at more then one file, i.e /var/log/message.all *
so it looks in old logs as well
thanks
exit 0 if (isRenderNode(hostname));
my... (4 Replies)
Hi All,
I have Solaris-10 machine. Yesterday I patched it with Solaris-10 patch Cluster. Since then glance software is filling up /var/core continuously. In every few minutes, it will fill /var to 100%.
Glance runs through /etc/init.d/mwa and I already stopped it, still core files are... (15 Replies)
Hi there
I was wondering, is there anyway I can change the appearance of sshd logs output in /var/log/sshderr.log and /var/log/sshd.log. Right now, its showing as such:
sshd: error: PAM: Authentication failure for it.sysadm from cijXXX.jp.mitsubishi-motors.com
sshd: Accepted... (10 Replies)
Hi there,
I'm working on a Suse 8 based system and picked up that the crontab was missing. after some investigation i realized that the hole /var directory is missing. :mad:
I would like to now if its common for this directory to go missing?
Can I copy another Suse 8 /var directory to this... (10 Replies)
Hii,
I am reading data from files by defining path as *.log etc,
Files names are like app1a_test2_heep.log , cdc2a_test3_heep.log etc
How to configure logstash so that the part of string that is string before underscore (app1a, cdc2a..) should be grepped and added to host field and... (7 Replies)
I have a log file that's created daily by this command:
sar -u 300 288 >> /var/log/usage/$(date "+%Y-%m-%d")_$(hostname)_cpu.log
It that contains data like this:
Linux 3.16.0-4-amd64 (myhostname) 08/15/2015 _x86_64_ (1 CPU)
11:34:17 PM CPU %user %nice ... (12 Replies)
Below is my script to log all the command input by any user to /var/log/messages. But I cant achieve the desired output that i want. PLease see below.
function log2syslog
{
declare COMMAND
COMMAND=$(fc -ln -0)
logger -p local1.notice -t bash -i -- "$USER:$COMMAND"
}
trap... (12 Replies)