File:  [LON-CAPA] / loncom / init.d / loncontrol
Revision 1.44.2.1: download - view: text, annotated - select for diffs
Sun Jul 7 20:49:02 2019 UTC (4 years, 10 months ago) by raeburn
Branches: version_2_11_X
CVS tags: version_2_11_4_uiuc, version_2_11_4_msu, version_2_11_4, version_2_11_3_uiuc, version_2_11_3_msu, version_2_11_3
Diff to branchpoint 1.44: preferred, unified
- For 2.11
  Backport 1.46

    1: #!/usr/bin/perl
    2: #
    3: # $Id: loncontrol,v 1.44.2.1 2019/07/07 20:49:02 raeburn Exp $
    4: #
    5: # The LearningOnline Network with CAPA
    6: #
    7: # Copyright Michigan State University Board of Trustees
    8: #
    9: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
   10: #
   11: # LON-CAPA is free software; you can redistribute it and/or modify
   12: # it under the terms of the GNU General Public License as published by
   13: # the Free Software Foundation; either version 2 of the License, or
   14: # (at your option) any later version.
   15: #
   16: # LON-CAPA is distributed in the hope that it will be useful,
   17: # but WITHOUT ANY WARRANTY; without even the implied warranty of
   18: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   19: # GNU General Public License for more details.
   20: #
   21: # You should have received a copy of the GNU General Public License
   22: # along with LON-CAPA; if not, write to the Free Software
   23: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
   24: #
   25: # /home/httpd/html/adm/gpl.txt
   26: #
   27: # http://www.lon-capa.org/
   28: #
   29: # Startup script for the LON-CAPA network processes
   30: #
   31: 
   32: # chkconfig: 345 95 5
   33: # description: LON-CAPA is a "network of knowledge".  It is used to \
   34: # distribute knowledge resources and instructional management.
   35: # processnames: lonc, lond, lonsql, lonmaxima, lonr
   36: # pidfiles: /home/httpd/perl/logs/lon*.pid
   37: # config: /etc/httpd/conf/loncapa.conf
   38: # config: /home/httpd/lonTabs/hosts.tab
   39: # config: /home/httpd/lonTabs/spare.tab
   40: # SuSE chkconfig/insserv info
   41: ### BEGIN INIT INFO
   42: # Provides:       loncapa
   43: # Required-Start: SuSEfirewall2_setup mysql apache2 $network $remote_fs
   44: # Should-Start:   $ALL
   45: # Required-Stop:
   46: # Default-Start:  3 5
   47: # Default-Stop:
   48: # Description:    Starts the LON-CAPA services
   49: ### END INIT INFO
   50: 
   51: use strict;
   52: use lib '/home/httpd/lib/perl/';
   53: use LONCAPA::Configuration;
   54: use LONCAPA::Firewall;
   55: use Apache::lonnet;
   56: 
   57: my $command=$ARGV[0]; $command=~s/[^a-z]//g;
   58: 
   59: $ENV{'PATH'}="/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/root/bin";
   60: $ENV{'BASH_ENV'}="";
   61: 
   62: sub stop_daemon {
   63:     my ($daemon,$killallname)=@_;
   64:     my $pidfile="/home/httpd/perl/logs/$daemon.pid";
   65:     
   66:     printf("%-15s ",$daemon);
   67:     if (-e $pidfile) {
   68: 	open(PIDFILE,$pidfile);
   69: 	my $daemonpid=<PIDFILE>;
   70: 	chomp($daemonpid);
   71: 	kill TERM => $daemonpid;
   72: 	my $count=0;
   73: 	while ($count++ < 5 && kill(0 => $daemonpid)) {
   74: 	    sleep 1;
   75: 	}
   76: 	if (kill 0 => $daemonpid) {
   77: 	    kill KILL => $daemonpid;
   78: 	    sleep 1;
   79: 	    if (kill 0 => $daemonpid) {
   80: 		print("failed to kill");
   81: 	    } else {
   82: 		print("killed");
   83: 	    }
   84: 	} else {
   85: 	    print("stopped");
   86: 	}
   87:     } else {
   88: 	print("not running");
   89:     }
   90:     system("killall -q -0 $killallname");
   91:     if ($? == 0) {
   92: 	system("killall -q $killallname");
   93: 	print(", killed off extraneous processes");
   94:     }
   95:     unlink($pidfile);
   96:     print("\n");
   97: }
   98: 
   99: sub clean_sockets {
  100:     opendir(SOCKETS,"/home/httpd/sockets/");
  101:     my $perlvarref=&LONCAPA::Configuration::read_conf();
  102:     return if (ref($perlvarref) ne 'HASH');
  103:     while (my $fname=readdir(SOCKETS)) {
  104: 	next if (-d $fname
  105: 		 || $fname=~/(mysqlsock|maximasock|\Q$perlvarref->{'lonSockDir'}\E)/);
  106: 	unlink("/home/httpd/sockets/$fname");
  107:     }
  108: }
  109: 
  110: if (($command eq "restart") || ($command eq 'stop') || 
  111:     ($command eq 'start') || ($command eq "status")) {
  112:     my $iptables = &LONCAPA::Firewall::get_pathto_iptables();
  113:     my @fw_chains = &LONCAPA::Firewall::get_fw_chains($iptables);
  114:     my $lond_port = &LONCAPA::Firewall::get_lond_port();
  115:     my $firewalld = &LONCAPA::Firewall::uses_firewalld();
  116:     my %iphost;
  117:     if ($command eq 'restart') {
  118:         print 'Restarting LON-CAPA'."\n";
  119:         print 'Ending LON-CAPA client and daemon processes'."\n";
  120:         foreach my $daemon ('lonsql','lond','lonc','lonmemcached','lonmaxima','lonr') {
  121:             my $killallname=$daemon;
  122:             if ($daemon eq 'lonc') { $killallname='loncnew'; }
  123:             &stop_daemon($daemon,$killallname);
  124:         }
  125:         %iphost = &Apache::lonnet::get_iphost('',1);
  126:         my $firewall_result =
  127:             &LONCAPA::Firewall::firewall_close_port($iptables,\@fw_chains,
  128:                                              $lond_port,\%iphost,[$lond_port],
  129:                                              $firewalld);
  130:         if ($firewall_result) {
  131:             print "$firewall_result\n";
  132:         }
  133:         $firewall_result =
  134:             &LONCAPA::Firewall::firewall_open_port($iptables,\@fw_chains,
  135:                                             $lond_port, \%iphost,[$lond_port],
  136:                                             $firewalld);
  137:         if (($firewall_result eq 'ok') || ($firewall_result eq 'inactive firewall')) {
  138:             if ($firewall_result eq 'inactive firewall') {
  139:                 print "WARNING: iptables firewall is currently inactive\n";
  140:             }
  141:         } elsif ($firewall_result) {
  142:             print "$firewall_result\n";
  143:         }
  144:         print 'Starting LON-CAPA client and daemon processes (please be patient)'.
  145:               "\n";
  146:         system("su www -c '/home/httpd/perl/loncron --justcheckdaemons'");
  147:     } elsif ($command eq 'stop') {
  148:         print 'Stopping LON-CAPA'."\n";
  149:         foreach my $daemon ('lonsql','lond','lonc','lonmemcached','lonmaxima','lonr') {
  150: 	    my $killallname=$daemon;
  151: 	    if ($daemon eq 'lonc') { $killallname='loncnew'; }
  152: 	    &stop_daemon($daemon,$killallname);
  153:         }
  154:         my $firewall_result = 
  155:             &LONCAPA::Firewall::firewall_close_port($iptables,\@fw_chains,
  156:                                                     $lond_port,\%iphost,[$lond_port],
  157:                                                     $firewalld);
  158:         if ($firewall_result) {
  159:             print "$firewall_result\n";
  160:         }
  161:         &clean_sockets();
  162:     } elsif ($command eq "start") {
  163:         %iphost = &Apache::lonnet::get_iphost('',1);
  164:         my $firewall_result = 
  165:             &LONCAPA::Firewall::firewall_open_port($iptables,\@fw_chains,
  166:                                                    $lond_port,\%iphost,[$lond_port],
  167:                                                    $firewalld);
  168:         if (($firewall_result eq 'ok') || ($firewall_result eq 'inactive firewall')) {
  169:             if ($firewall_result eq 'inactive firewall') {
  170:                 print "WARNING: iptables firewall is currently inactive\n";
  171:             }
  172:             print 'Starting LON-CAPA'."\n";
  173:             print 'Starting LON-CAPA client and daemon processes (please be patient)'.
  174: 	          "\n";
  175:             system("su www -c '/home/httpd/perl/loncron --justcheckdaemons'");
  176:         } else {
  177:             print "Not starting LON-CAPA\n";
  178:             if ($firewall_result eq 'port number unknown') {
  179:                 print "Could not check for status of LON-CAPA port in running firewall - port number unknown.  \n";
  180:             } elsif ($firewall_result) {
  181:                 print "$firewall_result\n";
  182:             }
  183:         }
  184:     } elsif ($command eq "status") {
  185:         %iphost = &Apache::lonnet::get_iphost();
  186:         my $response=`/bin/cat /home/httpd/perl/logs/*.pid 2>&1`;
  187:         if ($response=~/No such file or directory/) {
  188: 	    print 'LON-CAPA is not running.'."\n";
  189:         } else {
  190: 	    print 'LON-CAPA is running.'."\n";
  191: 	    system("su www -c '/home/httpd/perl/loncron --justcheckconnections'");
  192:         }
  193:         if (! &LONCAPA::Firewall::firewall_is_active()) {
  194:             print 'The iptables firewall is not active'."\n";
  195:         }
  196:         if ($lond_port) {
  197:             my $londopen;
  198:             foreach my $fw_chain (@fw_chains) { 
  199:                 my $numopen = &LONCAPA::Firewall::firewall_is_port_open($iptables,$fw_chain,$lond_port,$lond_port,\%iphost,$firewalld);
  200:                 $londopen += $numopen; 
  201:             }
  202:             if ($londopen) {
  203:                 print "The LON-CAPA port ($lond_port) is open in firewall.\n";
  204:             } elsif (&LONCAPA::Firewall::firewall_is_active()) {
  205:                 print "The LON-CAPA port ($lond_port) is NOT open in running firewall!\n";
  206:             }
  207:         } else {
  208:             if (&LONCAPA::Firewall::firewall_is_active()) {
  209:                 print "Could not check for status of LON-CAPA port in running firewall - port number unknown.\n";
  210:             } else {
  211:                 print "LON-CAPA port number is unknown, and firewall is not running.\n";
  212:             }
  213:         }
  214:     }
  215: } elsif ($command eq "reload") {
  216:     print 'Reload LON-CAPA config files'."\n";
  217:     system("su www -c '/home/httpd/perl/loncron --justreload'");
  218: } else {
  219:     print "You need to specify one of reload|restart|stop|start|status on the command line.\n";
  220: }

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