Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!uunet!husc6!bloom-beacon!gatech!ukma!david From: david@ms.uky.edu (David Herron -- Resident E-mail Hack) Newsgroups: news.admin Subject: Re: --- Multiple UUXQTs causing thrashing --- Message-ID: <7539@e.ms.uky.edu> Date: Tue, 20-Oct-87 14:15:33 EDT Article-I.D.: e.7539 Posted: Tue Oct 20 14:15:33 1987 Date-Received: Wed, 21-Oct-87 22:08:52 EDT References: <173@zap.UUCP> <768@tolerant.UUCP> Reply-To: david@ms.uky.edu (David Herron -- Resident E-mail Hack) Organization: U of Kentucky, Mathematical Sciences Lines: 45 Keywords: Unix, compress, LCK.XQT, thrashing In article <768@tolerant.UUCP> jane@tolerant.UUCP (Jane Medefesser) writes: >In article <173@zap.UUCP>, fortin@zap.UUCP (Denis Fortin) writes: >Yes, I have encountered the SAME THING. Drove me nuts for a month or two. I >brain stormed this with Carl G. at pyramid and we sort of determined that >the LCK.XQT lock times out after about an hour. yes ... This is true of many of the "older" UUCP's. if you've got sources it's real easy to fix (It's a constant in one of the .h files). If you don't got sources ... welll ... Another way around this is to make rnews a one line script like: cat >/usr/spool/some-dir/uunews.$$ exit 0 Then you have another shell script like: cd /usr/spool/some-dir for i in uunews*; do if /usr/lib/news/real-rnews <$i; then rm -f $i else mv $i P.$i fi done I've always run this using "flock" to make sure that only one of these guys is running at a time. "flock" is more intelligent than the locking mechanism in uuxqt... The only thing I can say about hanging-on-checkgroups is that it's never hung here. It's usually come up with a really strange message, but it's never hung. Oh, that deal in the script about checking the exit status from real-rnews and mv'ing the file to P.$i really helps a lot ... but then we have news coming in from many strange paths. Anyway, I just go look for P. files from time to time ... -- <---- David Herron, Local E-Mail Hack, david@ms.uky.edu, david@ms.uky.csnet <---- {rutgers,uunet,cbosgd}!ukma!david, david@UKMA.BITNET <---- I thought that time was this neat invention that kept everything <---- from happening at once. Why doesn't this work in practice?