Annotation of doc/install/redhat7.3/install.pl, revision 1.18

1.1       matthew     1: #!/usr/bin/perl -w
                      2: # The LearningOnline Network 
                      3: # Red Hat 7.3 installation script
                      4: #
1.18    ! harris41    5: # $Id: install.pl,v 1.17 2003/01/07 20:48:53 matthew Exp $
1.1       matthew     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: #
1.2       matthew    27: 
1.1       matthew    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.
1.2       matthew    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.
1.1       matthew    43: ##
1.2       matthew    44: 
                     45: #
                     46: # Needed files:
                     47: #
                     48: #    The following files are assumed to be present in the current
                     49: #    directory:
                     50: #      RPMS:
1.3       matthew    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
1.2       matthew    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
1.16      matthew    64: #        LON-CAPA-systemperl-3.5-rh7.i386.rpm
1.2       matthew    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
1.12      matthew    70: #        netpbm-9.24-3.i386.rpm
                     71: #        netpbm-progs-9.24-3.i386.rpm
                     72: #        krb5-libs-1.2.4-3.i386.rpm
1.2       matthew    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: 
1.1       matthew    83: use strict;
                     84: use File::Copy;
                     85: 
                     86: my $result; 
                     87: my $test;
                     88: 
                     89: # note: The filehandle LOG is global.
1.14      matthew    90: open LOG,">loncapa_install.log" || die "Unable to open log file.\n";
1.1       matthew    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: 
1.12      matthew   150:                     Welcome to LON-CAPA 0.6.0
1.1       matthew   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: 
1.4       matthew   167: my @apache_rpms = (
1.16      matthew   168:              "$instdir/apache-1.3.23-14.i386.rpm",
1.4       matthew   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:                 );
1.16      matthew   177: 
1.4       matthew   178: # Check for gnome-askpass installation.
                    179: if (-e "/etc/profile.d/gnome-ssh-askpass.sh") {
                    180:     push @openssh_rpms,"$instdir/openssh-askpass-gnome-3.1p1-6.i386.rpm";
                    181: }
                    182: 
1.16      matthew   183: my @ImageMagick_rpms = ( 
1.3       matthew   184:              "$instdir/ImageMagick-5.4.3.11-1.i386.rpm",
                    185:              "$instdir/ImageMagick-devel-5.4.3.11-1.i386.rpm",
                    186:              "$instdir/ImageMagick-perl-5.4.3.11-1.i386.rpm",
                    187:                        );
                    188: 
1.16      matthew   189: my @mysql_rpms = (
                    190:              "$instdir/mysql-3.23.49-3.i386.rpm",
                    191:              "$instdir/mysqlclient9-3.23.22-6.i386.rpm",
                    192:              "$instdir/mysql-server-3.23.49-3.i386.rpm",
                    193:                   );
                    194: 
1.1       matthew   195: my @perl_rpms = ( 
                    196:              "$instdir/perl-DBD-MySQL-1.2216-4.i386.rpm",
                    197:              "$instdir/perl-DBI-1.21-1.i386.rpm",
                    198:              "$instdir/perl-suidperl-5.6.1-34.99.6.i386.rpm",
                    199:                  );
1.16      matthew   200: 
                    201: my @old_readline_rpms = (
                    202:              "$instdir/readline-2.2.1-6.i386.rpm", # requires -i --oldpackage, 
                    203:                                                    # not -Uvh
                    204:                          );
                    205: my @gnuplot_rpms = ( # must be done after readline-2.2.1-6
                    206:              "$instdir/libgd-1.3-4.i386.rpm", 
                    207:              "$instdir/libungif-progs-4.1.0-9.i386.rpm",
                    208:              "$instdir/ncurses4-5.0-5.i386.rpm",
                    209:              "$instdir/gnuplot-3.7.1-5.i386.rpm",
                    210:                     );
                    211: 
1.1       matthew   212: my @loncapa_perl_rpms = (
1.12      matthew   213:              "$instdir/netpbm-9.24-3.i386.rpm",
                    214:              "$instdir/netpbm-progs-9.24-3.i386.rpm",
                    215:              "$instdir/krb5-libs-1.2.4-3.i386.rpm",
1.13      matthew   216:              "$instdir/krb5-devel-1.2.4-3.i386.rpm",
1.12      matthew   217:              "$instdir/LON-CAPA-krb4-3.1-1.i386.rpm",
1.1       matthew   218:                     );
                    219: my @misc_rpms = (
1.16      matthew   220:              "$instdir/m2crypto-0.05_snap4-2.i386.rpm",
                    221:              "$instdir/tetex-dvips-1.0.7-47.i386.rpm",
                    222:              "$instdir/ntp-4.1.1-1.i386.rpm",
                    223:              "$instdir/libcap-1.10-8.i386.rpm",
1.1       matthew   224:              );
1.16      matthew   225: 
                    226: my $systemperl = "$instdir/LON-CAPA-systemperl-3.5-rh7.i386.rpm";
                    227: 
                    228: ##
                    229: ## Some of these rpm commands require being obnoxious (--force --nodeps)
                    230: ## this is not a nice thing to do and we should be careful about it.
1.1       matthew   231: ##
1.16      matthew   232: 
                    233: &print_and_log("Installing Apache packages.\n");
                    234: &writelog (`rpm -Uvh @apache_rpms`);
                    235: &print_and_log("Installing openssh packages.\n");
                    236: &writelog (`rpm -Uvh @openssh_rpms`);
                    237: &writelog(`/etc/init.d/sshd start`);
                    238: &print_and_log("Installing ImageMagick packages.\n");
                    239: &writelog (`rpm -Uvh @ImageMagick_rpms`);
                    240: &print_and_log("Installing mysql packages.\n");
                    241: &writelog (`rpm -Uvh @mysql_rpms`);
                    242: &print_and_log("Installing Perl packages.\n");
                    243: &writelog (`rpm -Uvh @perl_rpms`);
                    244: &print_and_log("Installing legacy readline package (required for gnuplot).");
                    245: &writelog(`rpm -i --oldpackage @old_readline_rpms`);
                    246: &print_and_log("Installing gnuplot packages.\n");
                    247: &writelog (`rpm -ivh --force --nodeps @gnuplot_rpms`);
                    248: &print_and_log("Installing LON-CAPA Perl packages.\n");
                    249: &writelog (`rpm -Uvh @loncapa_perl_rpms`);
                    250: &print_and_log("Installing misc packages.\n");
                    251: &writelog (`rpm -Uvh @misc_rpms`);
                    252: &print_and_log("Installing LON-CAPA systemperl rpm");
                    253: &writelog(`rpm -ivh --force --nodeps $systemperl`);
                    254: &print_and_log("\n");
                    255: 
                    256: 
                    257: ##
                    258: ## Remove conflicting packages
                    259: ##
                    260: my @php_rpms = ("php-imap-4.1.2-7",
                    261:                 "asp2php-0.76.2-1",
                    262:                 "php-ldap-4.1.2-7",
                    263:                 "php-devel-4.1.2-7",
                    264:                 "php-4.1.2-7");
                    265: 
                    266: &print_and_log("Removing php packages");
                    267: foreach my $php_rpm (@php_rpms) {
                    268:     my $remove_error = system("rpm -e --nodeps ".$php_rpm);
                    269:     if ($remove_error) {
                    270:         &print_and_log("Unable to remove ".$php_rpm.".  ".
                    271:                        "Assuming it is not present.\n");
                    272:     } else {
                    273:         &writelog("Successfully removed ".$php_rpm);
                    274:     }
                    275: }
1.1       matthew   276: 
                    277: ##
                    278: ## Fix that stupid little sendmail bug
                    279: ##
                    280: print_and_log("changing permissions on root directory.\n");
                    281: $result = `chmod g-w,u+w /`;
                    282: if ($result eq '') {
                    283:     $result = "successful\n";
                    284: } else {
                    285:     die "Unable to change permissions on root directory.  Halting.\n";
                    286: }
                    287: writelog ($result);
                    288: print_and_log("\n");
                    289: 
                    290: ##
                    291: ## Set up www and authentication
                    292: ##
                    293: print_and_log("Creating user 'www'\n");
                    294: $result = `/usr/sbin/useradd www`;
                    295: if (! (($result eq '') || ($result =~ /user www exists/))) {
                    296:     die "Unable to add user www.  Halting.\n";
                    297: }
                    298: writelog ($result);
                    299: my $num = `grep ^www /etc/passwd | cut -d':' -f3`;
                    300: chomp $num;
                    301: if (int($num) == $num) {
                    302:     writelog ("uid of www = $num\n");
                    303: } else {
                    304:     die "Unable to determine UID of user www\n  Halting.\n";
                    305: }
                    306: print_and_log("\n");
                    307: 
                    308: ##
                    309: ## Patch mod_auth_external
                    310: ##
                    311: print_and_log("Setting up authentication for 'www'\n");
                    312: my $patch = <<"ENDPATCH";
                    313: 148c148
                    314: < #define SERVER_UIDS 99		/* user "nobody" */
                    315: ---
                    316: > #define SERVER_UIDS $num		/* user "www" */
                    317: ENDPATCH
                    318: 
                    319: if (! -e "/usr/bin/patch") {
                    320:     print_and_log("You must install the software development tools package ".
                    321:                   "when installing RedHat.\n");
                    322:     die;
                    323: }
                    324: &die_if_nonempty(`cd /tmp; tar zxf $instdir/mod_auth_external-2.1.13.tar.gz`,
                    325:                  "Unable to extract mod_auth_external\n");
                    326: my $dir = "/tmp/mod_auth_external-2.1.13/pwauth";
                    327: open PATCH, "| patch $dir/config.h" || 
                    328:     die "Unable to start patch for mod_auth_external.  Halting\n";
                    329: print PATCH $patch;
                    330: close PATCH;
                    331: print_and_log("\n");
                    332: 
                    333: ##
                    334: ## Compile patched pwauth
                    335: ##
                    336: print_and_log("Compiling pwauth\n");
                    337: $result = `cd $dir/; make`;
                    338: my $expected = <<"END";
                    339: gcc -g    -c -o pwauth.o pwauth.c
                    340: gcc -o pwauth -g  pwauth.o -lcrypt
                    341: END
                    342: 
                    343: if ($result ne $expected) {
                    344:     die "Unable to compile patched pwauth.  Halting.\n";
                    345: }    
                    346: print_and_log( $result );
                    347: 
                    348: ##
                    349: ## Install patched pwauth
                    350: ##
                    351: print_and_log("Copying pwauth to /usr/local/sbin\n");
                    352: if (! copy "$dir/pwauth","/usr/local/sbin/pwauth") {
                    353:     die "Unable to copy $dir/pwauth to /usr/local/sbin/pwauth.\n$!\nHalting\n";
                    354: }
                    355: if (! chmod (06755, "/usr/local/sbin/pwauth")) {
                    356:     die "Unable to set permissions on /usr/local/sbin/pwauth.\n";
                    357: }
                    358: print_and_log("\n");
                    359: 
                    360: ##
                    361: ## Set up mysql
                    362: ##
                    363: print_and_log("Setting mysqld to start on boot up.\n");
1.18    ! harris41  364: system("/sbin/chkconfig --add mysqld");
        !           365: system("/sbin/chkconfig mysqld on");
        !           366: &writelog(`/sbin/chkconfig --list mysqld`);
1.1       matthew   367: 
                    368: writelog("mysql links created successfully\n");
                    369: writelog(`/etc/rc.d/init.d/mysqld start`);
                    370: print_and_log("Waiting for mysql daemon to start.\n");
                    371: sleep 5;
1.4       matthew   372: my $status = system("/etc/rc.d/init.d/mysqld status");
                    373: if ($status != 0) {
1.1       matthew   374:     die "Unable to start mysql daemon\nHalting\n";
1.4       matthew   375: } else {
                    376:     print_and_log("Mysql daemon is running.\n");
1.1       matthew   377: }
                    378: print_and_log("\n");
                    379: 
                    380: ##
                    381: ## Get root password for mysql client
                    382: ##
                    383: print <<END;
                    384: Please enter a root password for the mysql database.
                    385: It does not have to match your root account password, but you will need
                    386: to remember it.
                    387: END
                    388: my $rootpass = <>;
                    389: chomp $rootpass;
                    390: print_and_log("\n");
                    391: 
                    392: ##
                    393: ## Run the damn thing (mysql, not LON-CAPA)
                    394: ##
                    395: print_and_log("Starting mysql client.\n");
                    396: open MYSQL, "|mysql -u root mysql" || die "Unable to start mysql\n";
                    397: print MYSQL <<"ENDMYSQL";
                    398: CREATE DATABASE loncapa;
                    399: INSERT INTO user (Host, User, Password)
                    400: VALUES ('localhost','www',password('localhostkey'));
1.11      harris41  401: INSERT INTO db VALUES ('localhost','loncapa','www',
                    402: 'Y','Y','Y','Y','Y','Y','N','Y','Y','Y');
1.1       matthew   403: SET PASSWORD FOR root\@localhost=PASSWORD('$rootpass');
                    404: DELETE FROM user WHERE host<>'localhost';
                    405: FLUSH PRIVILEGES;
                    406: USE loncapa;
                    407: 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;
                    408: EXIT
                    409: ENDMYSQL
                    410: 
                    411: close MYSQL;
                    412: print_and_log("\n");
                    413: 
                    414: ##
1.17      matthew   415: ## Remove the firewall.
1.1       matthew   416: ##
1.18    ! harris41  417: system("/sbin/chkconfig ipchains off");
1.17      matthew   418: system("/etc/init.d/ipchains stop");
1.18    ! harris41  419: system("/sbin/chkconfig iptables on");
1.17      matthew   420: system("/etc/init.d/iptables start");
                    421: 
                    422: # Someday we will add these to /etc/sysconfig/ipchains.
                    423: #  "-A input -s 0/0 -d 0/0 8080 -p tcp -y -j ACCEPT",
                    424: #  "-A input -s 0/0 -d 0/0 5663 -p tcp -y -j ACCEPT"
                    425: # Someday we will deal with iptables, too.  Soon.
1.1       matthew   426: 
                    427: ##
                    428: ## Set up httpd 
                    429: ##
                    430: print_and_log("Setting httpd to start on boot up.\n");
1.18    ! harris41  431: system("/sbin/chkconfig httpd on");
1.1       matthew   432: 
                    433: ##
                    434: ## Copy our (probably lousy) httpd.conf to its rightful place
                    435: ##
                    436: print_and_log("Copying our httpd.conf to /etc/httpd/conf/httpd.conf\n");
                    437: copy "$instdir/httpd.conf","/etc/httpd/conf/httpd.conf";
                    438: chmod 0444,"/etc/httpd/conf/httpd.conf";
                    439: print_and_log("\n");
                    440: 
                    441: ##
                    442: ## Retrieve loncapa.tar.gz
                    443: ##
1.15      matthew   444: my $lctarball = 'loncapa-current.tar.gz';
                    445: if (! -e "$instdir/$lctarball") {
                    446:     print_and_log("Retrieving LON-CAPA source files from install.loncapa.org\n")
                    447: ;
1.16      matthew   448:     system("wget http://install.loncapa.org/versions/$lctarball 2>/dev/null 1>/dev/null");
1.15      matthew   449:     if (! -e "./$lctarball") {
1.1       matthew   450:         die("Unable to retrieve LON-CAPA source files from\n".
1.15      matthew   451:             "http://install.loncapa.org/versions/$lctarball\n");
1.1       matthew   452:     }
                    453:     print_and_log("\n");
                    454: } else {
                    455:     print_and_log(<<"END");
                    456: ------------------------------------------------------------------------
                    457: 
1.5       harris41  458: You seem to have a version of loncapa-current.tar.gz in $instdir.  
1.1       matthew   459: This copy will be used and a new version will NOT be downloaded.  
                    460: If you wish, you may download a new version by executing:
                    461: 
1.5       harris41  462: wget http://install.loncapa.org/versions/loncapa-current.tar.gz
1.1       matthew   463: 
                    464: ------------------------------------------------------------------------
                    465: END
                    466: }
                    467: 
                    468: ##
                    469: ## untar loncapa.tar.gz
                    470: ##
                    471: print_and_log("Extracting LON-CAPA source files\n");
1.5       harris41  472: writelog(`cd ~root; tar zxf $instdir/loncapa-current.tar.gz`);
1.1       matthew   473: print_and_log("\n");
                    474: 
                    475: my $version = `cat /etc/redhat-release`;
                    476: if ($version =~ /7\.2/) {
                    477:     print_and_log(<<"END");
                    478: This appears to be a Red Hat 7.2 system.  You need to execute the following
                    479: commands now:
                    480: rpm -Uvh perl-5.6.1-34.99.6.i386.rpm
                    481: rpm -Uvh perl-CGI-2.752-34.99.6.i386.rpm
                    482: 
1.7       harris41  483: cd /root/loncapa-N.N     (N.N should correspond to a version number like '0.4')
1.1       matthew   484: ./UPDATE
                    485: 
                    486: END
                    487: } else {
                    488:     ##
                    489:     ## Assure them that everything worked okay....
                    490:     ##
                    491:     print <<"ENDMSG";
                    492: All of the extra files seem to have been installed correctly.  It remains for 
                    493: you to execute the following commands:
                    494: 
1.7       harris41  495: cd /root/loncapa-N.N     (N.N should correspond to a version number like '0.4')
1.1       matthew   496: ./UPDATE
                    497: 
1.5       harris41  498: If you have any trouble, please see http://install.loncapa.org/ and 
                    499: http://help.loncapa.org/.  
1.1       matthew   500: ENDMSG
                    501: }
                    502: 
                    503: close LOG;
1.4       matthew   504: 

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