Annotation of doc/install/redhat7.3/install.pl, revision 1.19
1.1 matthew 1: #!/usr/bin/perl -w
2: # The LearningOnline Network
3: # Red Hat 7.3 installation script
4: #
1.19 ! matthew 5: # $Id: install.pl,v 1.18 2003/01/08 02:48:01 harris41 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",
1.19 ! matthew 264: "php-4.1.2-7",
! 265: "php-pgsql-4.1.2-7");
1.16 matthew 266:
267: &print_and_log("Removing php packages");
268: foreach my $php_rpm (@php_rpms) {
269: my $remove_error = system("rpm -e --nodeps ".$php_rpm);
270: if ($remove_error) {
271: &print_and_log("Unable to remove ".$php_rpm.". ".
272: "Assuming it is not present.\n");
273: } else {
274: &writelog("Successfully removed ".$php_rpm);
275: }
276: }
1.1 matthew 277:
278: ##
279: ## Fix that stupid little sendmail bug
280: ##
281: print_and_log("changing permissions on root directory.\n");
282: $result = `chmod g-w,u+w /`;
283: if ($result eq '') {
284: $result = "successful\n";
285: } else {
286: die "Unable to change permissions on root directory. Halting.\n";
287: }
288: writelog ($result);
289: print_and_log("\n");
290:
291: ##
292: ## Set up www and authentication
293: ##
294: print_and_log("Creating user 'www'\n");
295: $result = `/usr/sbin/useradd www`;
296: if (! (($result eq '') || ($result =~ /user www exists/))) {
297: die "Unable to add user www. Halting.\n";
298: }
299: writelog ($result);
300: my $num = `grep ^www /etc/passwd | cut -d':' -f3`;
301: chomp $num;
302: if (int($num) == $num) {
303: writelog ("uid of www = $num\n");
304: } else {
305: die "Unable to determine UID of user www\n Halting.\n";
306: }
307: print_and_log("\n");
308:
309: ##
310: ## Patch mod_auth_external
311: ##
312: print_and_log("Setting up authentication for 'www'\n");
313: my $patch = <<"ENDPATCH";
314: 148c148
315: < #define SERVER_UIDS 99 /* user "nobody" */
316: ---
317: > #define SERVER_UIDS $num /* user "www" */
318: ENDPATCH
319:
320: if (! -e "/usr/bin/patch") {
321: print_and_log("You must install the software development tools package ".
322: "when installing RedHat.\n");
323: die;
324: }
325: &die_if_nonempty(`cd /tmp; tar zxf $instdir/mod_auth_external-2.1.13.tar.gz`,
326: "Unable to extract mod_auth_external\n");
327: my $dir = "/tmp/mod_auth_external-2.1.13/pwauth";
328: open PATCH, "| patch $dir/config.h" ||
329: die "Unable to start patch for mod_auth_external. Halting\n";
330: print PATCH $patch;
331: close PATCH;
332: print_and_log("\n");
333:
334: ##
335: ## Compile patched pwauth
336: ##
337: print_and_log("Compiling pwauth\n");
338: $result = `cd $dir/; make`;
339: my $expected = <<"END";
340: gcc -g -c -o pwauth.o pwauth.c
341: gcc -o pwauth -g pwauth.o -lcrypt
342: END
343:
344: if ($result ne $expected) {
345: die "Unable to compile patched pwauth. Halting.\n";
346: }
347: print_and_log( $result );
348:
349: ##
350: ## Install patched pwauth
351: ##
352: print_and_log("Copying pwauth to /usr/local/sbin\n");
353: if (! copy "$dir/pwauth","/usr/local/sbin/pwauth") {
354: die "Unable to copy $dir/pwauth to /usr/local/sbin/pwauth.\n$!\nHalting\n";
355: }
356: if (! chmod (06755, "/usr/local/sbin/pwauth")) {
357: die "Unable to set permissions on /usr/local/sbin/pwauth.\n";
358: }
359: print_and_log("\n");
360:
361: ##
362: ## Set up mysql
363: ##
364: print_and_log("Setting mysqld to start on boot up.\n");
1.18 harris41 365: system("/sbin/chkconfig --add mysqld");
366: system("/sbin/chkconfig mysqld on");
367: &writelog(`/sbin/chkconfig --list mysqld`);
1.1 matthew 368:
369: writelog("mysql links created successfully\n");
370: writelog(`/etc/rc.d/init.d/mysqld start`);
371: print_and_log("Waiting for mysql daemon to start.\n");
372: sleep 5;
1.4 matthew 373: my $status = system("/etc/rc.d/init.d/mysqld status");
374: if ($status != 0) {
1.1 matthew 375: die "Unable to start mysql daemon\nHalting\n";
1.4 matthew 376: } else {
377: print_and_log("Mysql daemon is running.\n");
1.1 matthew 378: }
379: print_and_log("\n");
380:
381: ##
382: ## Get root password for mysql client
383: ##
384: print <<END;
385: Please enter a root password for the mysql database.
386: It does not have to match your root account password, but you will need
387: to remember it.
388: END
389: my $rootpass = <>;
390: chomp $rootpass;
391: print_and_log("\n");
392:
393: ##
394: ## Run the damn thing (mysql, not LON-CAPA)
395: ##
396: print_and_log("Starting mysql client.\n");
397: open MYSQL, "|mysql -u root mysql" || die "Unable to start mysql\n";
398: print MYSQL <<"ENDMYSQL";
399: CREATE DATABASE loncapa;
400: INSERT INTO user (Host, User, Password)
401: VALUES ('localhost','www',password('localhostkey'));
1.11 harris41 402: INSERT INTO db VALUES ('localhost','loncapa','www',
403: 'Y','Y','Y','Y','Y','Y','N','Y','Y','Y');
1.1 matthew 404: SET PASSWORD FOR root\@localhost=PASSWORD('$rootpass');
405: DELETE FROM user WHERE host<>'localhost';
406: FLUSH PRIVILEGES;
407: USE loncapa;
408: 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;
409: EXIT
410: ENDMYSQL
411:
412: close MYSQL;
413: print_and_log("\n");
414:
415: ##
1.17 matthew 416: ## Remove the firewall.
1.1 matthew 417: ##
1.18 harris41 418: system("/sbin/chkconfig ipchains off");
1.17 matthew 419: system("/etc/init.d/ipchains stop");
1.19 ! matthew 420: system("/sbin/chkconfig iptables off");
! 421: system("/etc/init.d/iptables stop");
1.17 matthew 422:
423: # Someday we will add these to /etc/sysconfig/ipchains.
424: # "-A input -s 0/0 -d 0/0 8080 -p tcp -y -j ACCEPT",
425: # "-A input -s 0/0 -d 0/0 5663 -p tcp -y -j ACCEPT"
426: # Someday we will deal with iptables, too. Soon.
1.1 matthew 427:
428: ##
429: ## Set up httpd
430: ##
431: print_and_log("Setting httpd to start on boot up.\n");
1.18 harris41 432: system("/sbin/chkconfig httpd on");
1.1 matthew 433:
434: ##
435: ## Copy our (probably lousy) httpd.conf to its rightful place
436: ##
437: print_and_log("Copying our httpd.conf to /etc/httpd/conf/httpd.conf\n");
438: copy "$instdir/httpd.conf","/etc/httpd/conf/httpd.conf";
439: chmod 0444,"/etc/httpd/conf/httpd.conf";
440: print_and_log("\n");
441:
442: ##
443: ## Retrieve loncapa.tar.gz
444: ##
1.15 matthew 445: my $lctarball = 'loncapa-current.tar.gz';
446: if (! -e "$instdir/$lctarball") {
447: print_and_log("Retrieving LON-CAPA source files from install.loncapa.org\n")
448: ;
1.16 matthew 449: system("wget http://install.loncapa.org/versions/$lctarball 2>/dev/null 1>/dev/null");
1.15 matthew 450: if (! -e "./$lctarball") {
1.1 matthew 451: die("Unable to retrieve LON-CAPA source files from\n".
1.15 matthew 452: "http://install.loncapa.org/versions/$lctarball\n");
1.1 matthew 453: }
454: print_and_log("\n");
455: } else {
456: print_and_log(<<"END");
457: ------------------------------------------------------------------------
458:
1.5 harris41 459: You seem to have a version of loncapa-current.tar.gz in $instdir.
1.1 matthew 460: This copy will be used and a new version will NOT be downloaded.
461: If you wish, you may download a new version by executing:
462:
1.5 harris41 463: wget http://install.loncapa.org/versions/loncapa-current.tar.gz
1.1 matthew 464:
465: ------------------------------------------------------------------------
466: END
467: }
468:
469: ##
470: ## untar loncapa.tar.gz
471: ##
472: print_and_log("Extracting LON-CAPA source files\n");
1.5 harris41 473: writelog(`cd ~root; tar zxf $instdir/loncapa-current.tar.gz`);
1.1 matthew 474: print_and_log("\n");
475:
476: my $version = `cat /etc/redhat-release`;
477: if ($version =~ /7\.2/) {
478: print_and_log(<<"END");
479: This appears to be a Red Hat 7.2 system. You need to execute the following
480: commands now:
481: rpm -Uvh perl-5.6.1-34.99.6.i386.rpm
482: rpm -Uvh perl-CGI-2.752-34.99.6.i386.rpm
483:
1.7 harris41 484: cd /root/loncapa-N.N (N.N should correspond to a version number like '0.4')
1.1 matthew 485: ./UPDATE
486:
487: END
488: } else {
489: ##
490: ## Assure them that everything worked okay....
491: ##
492: print <<"ENDMSG";
493: All of the extra files seem to have been installed correctly. It remains for
494: you to execute the following commands:
495:
1.7 harris41 496: cd /root/loncapa-N.N (N.N should correspond to a version number like '0.4')
1.1 matthew 497: ./UPDATE
498:
1.5 harris41 499: If you have any trouble, please see http://install.loncapa.org/ and
500: http://help.loncapa.org/.
1.1 matthew 501: ENDMSG
502: }
503:
504: close LOG;
1.4 matthew 505:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>