Name

PIDfile — PID filename

SYNOPSIS

filename

DESCRIPTION

Specify the filename that will contain Interchange server process ID. As with most Unix daemons, this is an elegant way to determine which process should be sent a signal for stopping or reconfiguring the server.

The location must be writable by the Interchange daemon.

DIRECTIVE TYPE AND DEFAULT VALUE

Global directive

EXAMPLES

Example: Setting PIDfile

PIDfile /var/run/interchange/interchange.pid

NOTES

AVAILABILITY

PIDfile is available in Interchange versions:

4.6.0-5.9.0 (git-head)

SOURCE

Interchange 5.9.0:

Source: lib/Vend/Config.pm
Line 444

['PIDfile',        'root_dir',         "etc/$Global::ExeName.pid"],

Source: lib/Vend/Config.pm
Line 3925 (context shows lines 3925-3932)

sub parse_root_dir {
my($var, $value) = @_;
return '' unless $value;
$value = "$Global::VendRoot/$value"
  unless file_name_is_absolute($value);
$value =~ s./+$..;
return $value;
}

AUTHORS

Interchange Development Group

SEE ALSO

PIDcheck(7ic), MaxRequestsPerChild(7ic), MaxServers(7ic), ChildLife(7ic)

DocBook! Interchange!