File:  [LON-CAPA] / loncom / lonmemcached
Revision 1.3: download - view: text, annotated - select for diffs
Fri Jul 8 01:20:46 2005 UTC (18 years, 8 months ago) by albertel
Branches: MAIN
CVS tags: HEAD
- don't really want sheel processing

#!/usr/bin/perl
$pidfile="/home/httpd/perl/logs/lonmemcached.pid";
$logfile="/home/httpd/perl/logs/lonmemcached.log";

if (-e $pidfile) {
   open(LFH,"$pidfile");
   my $pide=<LFH>;
   chomp($pide);
   close(LFH);
   if (kill 0 => $pide) { die "already running $pide"; }
}

if ($pid=fork()) { exit; }
open (PIDSAVE,">$pidfile");
print PIDSAVE "$$\n";
close(PIDSAVE);

exec('/usr/sbin/memcached','-m','256','-v');

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>