/usr/bin/mojomojo_fastcgi_manage.pl is in libmojomojo-perl 1.12+dfsg-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | #!/usr/bin/perl
=head1 NAME
mojomojo_fastcgi_manage.pl - script to start/stop/restart mojomojo fastcgi instance
=cut
eval { use FCGI::Engine::Manager };
if ($@) { die "You need to install FCGI::Engine to run this script\n"; }
my $m =
FCGI::Engine::Manager->new( conf => 'script/mojomojo_fastcgi_manage.yml' );
my ( $command, $server_name ) = @ARGV;
$m->start($server_name) if $command eq 'start';
$m->stop($server_name) if $command eq 'stop';
$m->restart($server_name) if $command eq 'restart';
$m->graceful($server_name) if $command eq 'graceful';
print $m->status($server_name) if $command eq 'status';
=head1 USAGE
NOTE: Run this script from the parent directory so path to configuration is correct.
perl script/mojomojo_fastcgi_manage.pl start
perl script/mojomojo_fastcgi_manage.pl stop
perl script/mojomojo_fastcgi_manage.pl restart mojomojo.server
=head1 Web Server Configuration
=head2 Apache
In an apache conf file:
FastCgiExternalServer /tmp/mojomojo.fcgi -socket /tmp/mojomojo.socket
Alias /wiki /tmp/mojomojo.fcgi/
|