[LON-CAPA-cvs] cvs: doc /install/redhat7.3 install.pl
harris41
lon-capa-cvs@mail.lon-capa.org
Sat, 16 Nov 2002 00:01:30 -0000
harris41 Fri Nov 15 19:01:30 2002 EDT
Modified files:
/doc/install/redhat7.3 install.pl
Log:
this is really frustrating... it didn't used to require single quotes..
and this changes the entry inside mysql:db table.
Index: doc/install/redhat7.3/install.pl
diff -u doc/install/redhat7.3/install.pl:1.9 doc/install/redhat7.3/install.pl:1.10
--- doc/install/redhat7.3/install.pl:1.9 Tue Sep 24 09:16:23 2002
+++ doc/install/redhat7.3/install.pl Fri Nov 15 19:01:29 2002
@@ -2,7 +2,7 @@
# The LearningOnline Network
# Red Hat 7.3 installation script
#
-# $Id: install.pl,v 1.9 2002/09/24 13:16:23 matthew Exp $
+# $Id: install.pl,v 1.10 2002/11/16 00:01:29 harris41 Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -364,7 +364,7 @@
CREATE DATABASE loncapa;
INSERT INTO user (Host, User, Password)
VALUES ('localhost','www',password('localhostkey'));
-GRANT ALL PRIVILEGES ON loncapa.* TO www\@localhost;
+GRANT ALL PRIVILEGES ON loncapa.* TO 'www\@localhost';
SET PASSWORD FOR root\@localhost=PASSWORD('$rootpass');
DELETE FROM user WHERE host<>'localhost';
FLUSH PRIVILEGES;