File:  [LON-CAPA] / doc / install / redhat7.3 / install.pl
Revision 1.12: download - view: text, annotated - select for diffs
Thu Dec 12 20:55:23 2002 UTC (21 years, 8 months ago) by matthew
Branches: MAIN
CVS tags: version_0_6_2, version_0_6, HEAD
Version 0.6.0 commit.  Added netpbm rpms, kerberos (4 and 5) rpms.
Expect another commit relatively soon.

    1: #!/usr/bin/perl -w
    2: # The LearningOnline Network 
    3: # Red Hat 7.3 installation script
    4: #
    5: # $Id: install.pl,v 1.12 2002/12/12 20:55:23 matthew Exp $
    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: # http://www.lon-capa.org/
   26: #
   27: 
   28: ##
   29: ## Obvious flaws of this program: 
   30: ##   Dieing on every error may be a little extreme.  On the other hand, 
   31: ##       how the heck am I supposed to know what absurd things the user 
   32: ##       has done with their system before inflicting LON-CAPA on it?
   33: ##   The links to /etc/init.d for httpd and mysqld do not seem to work :(
   34: ##   The user is never informed of the log file (/tmp/loncapa_install.log).
   35: ##   It does not test the system at the end.  Again, there are limits to 
   36: ##       what nonsense we can put up with.  Of course, we will have to 
   37: ##       explain that to people at some point...
   38: ##   There is probably an overuse of elipses (...) in the comments.
   39: ##   It might be nice to check that all the files we need are here.
   40: ##   Appletalk is installed but does not work and gives errors on
   41: ##       boot up.  I have not been able to find a clean way to get the
   42: ##       appletalk support working but the powers that be insist on it.
   43: ##
   44: 
   45: #
   46: # Needed files:
   47: #
   48: #    The following files are assumed to be present in the current
   49: #    directory:
   50: #      RPMS:
   51: #        ImageMagick-5.4.3.11-1.i386.rpm
   52: #        ImageMagick-devel-5.4.3.11-1.i386.rpm
   53: #        ImageMagick-perl-5.4.3.11-1.i386.rpm
   54: #        gnuplot-3.7.1-5.i386.rpm
   55: #        libgd-1.3-4.i386.rpm
   56: #        libungif-progs-4.1.0-9.i386.rpm
   57: #        ncurses4-5.0-5.i386.rpm
   58: #        readline-2.2.1-6.i386.rpm
   59: #        readline-4.2a-4.i386.rpm
   60: #        perl-DBD-MySQL-1.2216-4.i386.rpm
   61: #        perl-DBI-1.21-1.i386.rpm
   62: #        mod_perl-1.26-5.i386.rpm
   63: #        perl-suidperl-5.6.1-34.99.6.i386.rpm
   64: #        LONCAPA-0.6.0-1.i386.rpm
   65: #        mysql-3.23.49-3.i386.rpm
   66: #        mysqlclient9-3.23.22-6.i386.rpm
   67: #        mysql-server-3.23.49-3.i386.rpm
   68: #        hwcrypto-1.0-3.i386.rpm
   69: #        m2crypto-0.05_snap4-2.i386.rpm
   70: #        netpbm-9.24-3.i386.rpm
   71: #        netpbm-progs-9.24-3.i386.rpm
   72: #        krb5-libs-1.2.4-3.i386.rpm
   73: #      Other files:
   74: #        httpd.conf
   75: #        mod_auth_external-2.1.13.tar.gz
   76: #
   77: #    The contingency plan for a 7.2 install tells the user to install these
   78: #    from the current directory.
   79: #        perl-5.6.1-34.99.6.i386.rpm
   80: #        perl-CGI-2.752-34.99.6.i386.rpm
   81: #
   82: 
   83: use strict;
   84: use File::Copy;
   85: 
   86: my $result; 
   87: my $test;
   88: 
   89: # note: The filehandle LOG is global.
   90: open LOG,">/tmp/loncapa_install.log" || die "Unable to open log file.\n";
   91: 
   92: # Some friendly subroutines
   93: sub die_if_nonempty {
   94:     my ($string,$error)=@_;
   95:     return if (! defined($error));
   96:     chomp($string);chomp($error);
   97:     if ($string ne '') {
   98:         print_and_log("$error\nHalting.\n");
   99:         die;
  100:     }
  101: }
  102: 
  103: sub make_link_or_die {
  104:     my ($source,$dest)=@_;
  105:     &die_if_nonempty
  106:         (`ln -fs $source $dest`,"Unable to link $source to $dest.");
  107:     print LOG "Link from $source to $dest made successfully\n";
  108: }
  109: 
  110: sub writelog {
  111:     while ($_ = shift) {
  112:         chomp;
  113:         print LOG "$_\n";
  114:     }
  115: }
  116: 
  117: sub print_and_log {
  118:     while ($_=shift) {
  119:         chomp;
  120:         print "$_\n";
  121:         print LOG "$_\n";
  122:     }
  123: }
  124: 
  125: ##
  126: ## First, make sure it's a red hat system.
  127: ##
  128: if (! -e "/etc/redhat-release") {
  129:     print_and_log(<<"END");
  130: *********************************************************************
  131: 
  132: This does not a appear to be a Red-Hat system.  More than likely the 
  133: installation will not be successful!  Press control-c to abort now, 
  134: otherwise press enter to forge ahead and damn the torpedos.
  135: 
  136: *********************************************************************
  137: END
  138:     undef = <STDIN>;
  139: }
  140: 
  141: 
  142: 
  143: #
  144: # The installation work begins now...
  145: #
  146: 
  147: print <<"END";
  148: ********************************************************************
  149: 
  150:                     Welcome to LON-CAPA 0.6.0
  151: 
  152: This script will install the base software that LON-CAPA needs to
  153: run properly. 
  154: 
  155: ********************************************************************
  156: END
  157: 
  158: ##
  159: ## Install needed RPMS
  160: ##
  161: my $instdir = `pwd`;
  162: chomp($instdir);
  163: # 
  164: # This list of rpms needs to be pared down to some extent.
  165: #
  166: 
  167: my @apache_rpms = (
  168:              "$instdir/apache-1.3.23-14.i386.rpm"
  169:                    );
  170: 
  171: my @openssh_rpms = (
  172:              "$instdir/openssh-3.1p1-6.i386.rpm",
  173:              "$instdir/openssh-askpass-3.1p1-6.i386.rpm",
  174:              "$instdir/openssh-clients-3.1p1-6.i386.rpm",
  175:              "$instdir/openssh-server-3.1p1-6.i386.rpm"
  176:                 );
  177: # Check for gnome-askpass installation.
  178: if (-e "/etc/profile.d/gnome-ssh-askpass.sh") {
  179:     push @openssh_rpms,"$instdir/openssh-askpass-gnome-3.1p1-6.i386.rpm";
  180: }
  181: 
  182: my @ImageMagick_rpms = (
  183:              "$instdir/ImageMagick-5.4.3.11-1.i386.rpm",
  184:              "$instdir/ImageMagick-devel-5.4.3.11-1.i386.rpm",
  185:              "$instdir/ImageMagick-perl-5.4.3.11-1.i386.rpm",
  186:                        );
  187: 
  188: my @gnuplot_rpms = (
  189:              "$instdir/gnuplot-3.7.1-5.i386.rpm",
  190:              "$instdir/libgd-1.3-4.i386.rpm",
  191:              "$instdir/libungif-progs-4.1.0-9.i386.rpm",
  192:              "$instdir/ncurses4-5.0-5.i386.rpm",
  193:              "$instdir/readline-2.2.1-6.i386.rpm",
  194:              "$instdir/readline-4.2a-4.i386.rpm"
  195:                     );
  196: my @perl_rpms = ( 
  197:              "$instdir/perl-DBD-MySQL-1.2216-4.i386.rpm",
  198:              "$instdir/perl-DBI-1.21-1.i386.rpm",
  199:              "$instdir/mod_perl-1.26-5.i386.rpm",
  200:              "$instdir/perl-suidperl-5.6.1-34.99.6.i386.rpm",
  201:                  );
  202: my @loncapa_perl_rpms = (
  203:              "$instdir/LONCAPA-0.6.0-1.i386.rpm",
  204:              "$instdir/netpbm-9.24-3.i386.rpm",
  205:              "$instdir/netpbm-progs-9.24-3.i386.rpm",
  206:              "$instdir/krb5-libs-1.2.4-3.i386.rpm",
  207:              "$instdir/LON-CAPA-krb4-3.1-1.i386.rpm",
  208:                     );
  209: my @mysql_rpms = (
  210:              "$instdir/mysql-3.23.49-3.i386.rpm",          # okay w/o f,nd
  211:              "$instdir/mysqlclient9-3.23.22-6.i386.rpm",   # okay w/o f,nd
  212:              "$instdir/mysql-server-3.23.49-3.i386.rpm",   # okay w/o f,nd
  213:                   );
  214: my @misc_rpms = (
  215:              "$instdir/hwcrypto-1.0-3.i386.rpm",           # already installed
  216:              "$instdir/m2crypto-0.05_snap4-2.i386.rpm",    # okay w/o f,nd
  217:              "$instdir/tetex-dvips-1.0.7-47.i386.rpm"      
  218:              );
  219: ##
  220: ## Okay, I have tried being nice about this and not doing '--force --nodeps',
  221: ## but it is an exercise in frustration.  It would be nice to be kind, but
  222: ## frankly I do not want to spend the time to figure this out.
  223: ##
  224: 
  225: print_and_log("Installing Apache packages.\n");
  226: writelog (`rpm -Uvh @apache_rpms`);
  227: print_and_log("Installing openssh packages.\n");
  228: writelog (`rpm -Uvh @openssh_rpms`);
  229: system("/etc/init.d/sshd start");
  230: print_and_log("Installing ImageMagick packages.\n");
  231: writelog (`rpm -ivh --force --nodeps @ImageMagick_rpms`);
  232: print_and_log("Installing mysql packages.\n");
  233: writelog (`rpm -ivh --force --nodeps @mysql_rpms`);
  234: print_and_log("Installing gnuplot packages.\n");
  235: writelog (`rpm -ivh --force --nodeps @gnuplot_rpms`);
  236: print_and_log("Installing LON-CAPA Perl packages.\n");
  237: writelog (`rpm -ivh --force --nodeps @loncapa_perl_rpms`);
  238: print_and_log("Installing Perl packages.\n");
  239: writelog (`rpm -ivh --force --nodeps @perl_rpms`);
  240: print_and_log("Installing misc packages.\n");
  241: writelog (`rpm -ivh --force --nodeps @misc_rpms`);
  242: print_and_log("\n");
  243: 
  244: ##
  245: ## Fix that stupid little sendmail bug
  246: ##
  247: print_and_log("changing permissions on root directory.\n");
  248: $result = `chmod g-w,u+w /`;
  249: if ($result eq '') {
  250:     $result = "successful\n";
  251: } else {
  252:     die "Unable to change permissions on root directory.  Halting.\n";
  253: }
  254: writelog ($result);
  255: print_and_log("\n");
  256: 
  257: ##
  258: ## Set up www and authentication
  259: ##
  260: print_and_log("Creating user 'www'\n");
  261: $result = `/usr/sbin/useradd www`;
  262: if (! (($result eq '') || ($result =~ /user www exists/))) {
  263:     die "Unable to add user www.  Halting.\n";
  264: }
  265: writelog ($result);
  266: my $num = `grep ^www /etc/passwd | cut -d':' -f3`;
  267: chomp $num;
  268: if (int($num) == $num) {
  269:     writelog ("uid of www = $num\n");
  270: } else {
  271:     die "Unable to determine UID of user www\n  Halting.\n";
  272: }
  273: print_and_log("\n");
  274: 
  275: ##
  276: ## Patch mod_auth_external
  277: ##
  278: print_and_log("Setting up authentication for 'www'\n");
  279: my $patch = <<"ENDPATCH";
  280: 148c148
  281: < #define SERVER_UIDS 99		/* user "nobody" */
  282: ---
  283: > #define SERVER_UIDS $num		/* user "www" */
  284: ENDPATCH
  285: 
  286: if (! -e "/usr/bin/patch") {
  287:     print_and_log("You must install the software development tools package ".
  288:                   "when installing RedHat.\n");
  289:     die;
  290: }
  291: &die_if_nonempty(`cd /tmp; tar zxf $instdir/mod_auth_external-2.1.13.tar.gz`,
  292:                  "Unable to extract mod_auth_external\n");
  293: my $dir = "/tmp/mod_auth_external-2.1.13/pwauth";
  294: open PATCH, "| patch $dir/config.h" || 
  295:     die "Unable to start patch for mod_auth_external.  Halting\n";
  296: print PATCH $patch;
  297: close PATCH;
  298: print_and_log("\n");
  299: 
  300: ##
  301: ## Compile patched pwauth
  302: ##
  303: print_and_log("Compiling pwauth\n");
  304: $result = `cd $dir/; make`;
  305: my $expected = <<"END";
  306: gcc -g    -c -o pwauth.o pwauth.c
  307: gcc -o pwauth -g  pwauth.o -lcrypt
  308: END
  309: 
  310: if ($result ne $expected) {
  311:     die "Unable to compile patched pwauth.  Halting.\n";
  312: }    
  313: print_and_log( $result );
  314: 
  315: ##
  316: ## Install patched pwauth
  317: ##
  318: print_and_log("Copying pwauth to /usr/local/sbin\n");
  319: if (! copy "$dir/pwauth","/usr/local/sbin/pwauth") {
  320:     die "Unable to copy $dir/pwauth to /usr/local/sbin/pwauth.\n$!\nHalting\n";
  321: }
  322: if (! chmod (06755, "/usr/local/sbin/pwauth")) {
  323:     die "Unable to set permissions on /usr/local/sbin/pwauth.\n";
  324: }
  325: print_and_log("\n");
  326: 
  327: ##
  328: ## Set up mysql
  329: ##
  330: print_and_log("Setting mysqld to start on boot up.\n");
  331: 
  332: make_link_or_die("/etc/rc.d/init.d/mysqld","/etc/rc.d/rc0.d/K90mysqld");
  333: make_link_or_die("/etc/rc.d/init.d/mysqld","/etc/rc.d/rc1.d/K90mysqld");
  334: make_link_or_die("/etc/rc.d/init.d/mysqld","/etc/rc.d/rc2.d/S90mysqld");
  335: make_link_or_die("/etc/rc.d/init.d/mysqld","/etc/rc.d/rc3.d/S90mysqld");
  336: make_link_or_die("/etc/rc.d/init.d/mysqld","/etc/rc.d/rc4.d/S90mysqld");
  337: make_link_or_die("/etc/rc.d/init.d/mysqld","/etc/rc.d/rc5.d/S90mysqld");
  338: make_link_or_die("/etc/rc.d/init.d/mysqld","/etc/rc.d/rc6.d/K90mysqld");
  339: 
  340: writelog("mysql links created successfully\n");
  341: writelog(`/etc/rc.d/init.d/mysqld start`);
  342: print_and_log("Waiting for mysql daemon to start.\n");
  343: sleep 5;
  344: my $status = system("/etc/rc.d/init.d/mysqld status");
  345: if ($status != 0) {
  346:     die "Unable to start mysql daemon\nHalting\n";
  347: } else {
  348:     print_and_log("Mysql daemon is running.\n");
  349: }
  350: print_and_log("\n");
  351: 
  352: ##
  353: ## Get root password for mysql client
  354: ##
  355: print <<END;
  356: Please enter a root password for the mysql database.
  357: It does not have to match your root account password, but you will need
  358: to remember it.
  359: END
  360: my $rootpass = <>;
  361: chomp $rootpass;
  362: print_and_log("\n");
  363: 
  364: ##
  365: ## Run the damn thing (mysql, not LON-CAPA)
  366: ##
  367: print_and_log("Starting mysql client.\n");
  368: open MYSQL, "|mysql -u root mysql" || die "Unable to start mysql\n";
  369: print MYSQL <<"ENDMYSQL";
  370: CREATE DATABASE loncapa;
  371: INSERT INTO user (Host, User, Password)
  372: VALUES ('localhost','www',password('localhostkey'));
  373: INSERT INTO db VALUES ('localhost','loncapa','www',
  374: 'Y','Y','Y','Y','Y','Y','N','Y','Y','Y');
  375: SET PASSWORD FOR root\@localhost=PASSWORD('$rootpass');
  376: DELETE FROM user WHERE host<>'localhost';
  377: FLUSH PRIVILEGES;
  378: USE loncapa;
  379: CREATE TABLE IF NOT EXISTS metadata (title TEXT, author TEXT, subject TEXT, url TEXT, keywords TEXT, version TEXT, notes TEXT, abstract TEXT, mime TEXT, language TEXT, creationdate DATETIME, lastrevisiondate DATETIME, owner TEXT, copyright TEXT, FULLTEXT idx_title (title), FULLTEXT idx_author (author), FULLTEXT idx_subject (subject), FULLTEXT idx_url (url), FULLTEXT idx_keywords (keywords), FULLTEXT idx_version (version), FULLTEXT idx_notes (notes), FULLTEXT idx_abstract (abstract), FULLTEXT idx_mime (mime), FULLTEXT idx_language (language), FULLTEXT idx_owner (owner), FULLTEXT idx_copyright (copyright)) TYPE=MYISAM;
  380: EXIT
  381: ENDMYSQL
  382: 
  383: close MYSQL;
  384: print_and_log("\n");
  385: 
  386: ##
  387: ## Kill the firewall, if it exists
  388: ##
  389: #
  390: # A better method would be to modify the firewall rules to make
  391: # the lond port open.  Someday.
  392: #
  393: if (-e "/etc/init.d/iptables" || -e "/etc/init.d/ipchans") {
  394:     print_and_log("Stopping and removing your firewall\n");
  395:     my @tokill = ("/etc/rc.d/rc2.d/S08ipchains",
  396:                   "/etc/rc.d/rc2.d/S08iptables",
  397:                   "/etc/rc.d/rc3.d/S08ipchains",
  398:                   "/etc/rc.d/rc3.d/S08iptables",
  399:                   "/etc/rc.d/rc4.d/S08ipchains",
  400:                   "/etc/rc.d/rc4.d/S08iptables",
  401:                   "/etc/rc.d/rc5.d/S08ipchains",
  402:                   "/etc/rc.d/rc5.d/S08iptables" );
  403:     foreach (@tokill) {
  404:         unlink $_ if (-e $_ );
  405:     }
  406:     writelog(`/etc/init.d/ipchains stop`);
  407:     writelog(`/etc/init.d/ipchains stop`);
  408:     print_and_log("\n");
  409: }
  410: 
  411: ##
  412: ## Set up httpd 
  413: ##
  414: print_and_log("Setting httpd to start on boot up.\n");
  415: 
  416: make_link_or_die("/etc/rc.d/init.d/httpd","/etc/rc.d/rc0.d/K15httpd");
  417: make_link_or_die("/etc/rc.d/init.d/httpd","/etc/rc.d/rc1.d/K15httpd");
  418: make_link_or_die("/etc/rc.d/init.d/httpd","/etc/rc.d/rc2.d/K15httpd");
  419: make_link_or_die("/etc/rc.d/init.d/httpd","/etc/rc.d/rc3.d/S85httpd");
  420: make_link_or_die("/etc/rc.d/init.d/httpd","/etc/rc.d/rc4.d/K15httpd");
  421: make_link_or_die("/etc/rc.d/init.d/httpd","/etc/rc.d/rc5.d/K15httpd");
  422: make_link_or_die("/etc/rc.d/init.d/httpd","/etc/rc.d/rc6.d/K15httpd");
  423: 
  424: ##
  425: ## Copy our (probably lousy) httpd.conf to its rightful place
  426: ##
  427: print_and_log("Copying our httpd.conf to /etc/httpd/conf/httpd.conf\n");
  428: copy "$instdir/httpd.conf","/etc/httpd/conf/httpd.conf";
  429: chmod 0444,"/etc/httpd/conf/httpd.conf";
  430: print_and_log("\n");
  431: 
  432: ##
  433: ## Retrieve loncapa.tar.gz
  434: ##
  435: if (! -e "$instdir/loncapa-current.tar.gz") {
  436:     print_and_log("Retrieving LON-CAPA source files from install.loncapa.org\n");
  437:     system("wget http://install.loncapa.org/versions/loncapa-current.tar.gz 2>/dev/null 1>/dev/null");
  438:     if (! -e "./loncapa-current.tar.gz") {
  439:         die("Unable to retrieve LON-CAPA source files from\n".
  440:             "http://install.loncapa.org/versions/loncapa-current.tar.gz\n");
  441:     }
  442:     print_and_log("\n");
  443: } else {
  444:     print_and_log(<<"END");
  445: ------------------------------------------------------------------------
  446: 
  447: You seem to have a version of loncapa-current.tar.gz in $instdir.  
  448: This copy will be used and a new version will NOT be downloaded.  
  449: If you wish, you may download a new version by executing:
  450: 
  451: wget http://install.loncapa.org/versions/loncapa-current.tar.gz
  452: 
  453: ------------------------------------------------------------------------
  454: END
  455: }
  456: 
  457: ##
  458: ## untar loncapa.tar.gz
  459: ##
  460: print_and_log("Extracting LON-CAPA source files\n");
  461: writelog(`cd ~root; tar zxf $instdir/loncapa-current.tar.gz`);
  462: print_and_log("\n");
  463: 
  464: my $version = `cat /etc/redhat-release`;
  465: if ($version =~ /7\.2/) {
  466:     print_and_log(<<"END");
  467: This appears to be a Red Hat 7.2 system.  You need to execute the following
  468: commands now:
  469: rpm -Uvh perl-5.6.1-34.99.6.i386.rpm
  470: rpm -Uvh perl-CGI-2.752-34.99.6.i386.rpm
  471: 
  472: cd /root/loncapa-N.N     (N.N should correspond to a version number like '0.4')
  473: ./UPDATE
  474: 
  475: END
  476: } else {
  477:     ##
  478:     ## Assure them that everything worked okay....
  479:     ##
  480:     print <<"ENDMSG";
  481: All of the extra files seem to have been installed correctly.  It remains for 
  482: you to execute the following commands:
  483: 
  484: cd /root/loncapa-N.N     (N.N should correspond to a version number like '0.4')
  485: ./UPDATE
  486: 
  487: If you have any trouble, please see http://install.loncapa.org/ and 
  488: http://help.loncapa.org/.  
  489: ENDMSG
  490: }
  491: 
  492: close LOG;
  493: 

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