[LON-CAPA-cvs] cvs: doc / how_to_install_on_RedHat7.2.txt /build install.html

harris41 lon-capa-cvs@mail.lon-capa.org
Fri, 10 May 2002 20:51:20 -0000


harris41		Fri May 10 16:51:20 2002 EDT

  Modified files:              
    /doc	how_to_install_on_RedHat7.2.txt 
    /doc/build	install.html 
  Log:
  fixing delete from sql syntax
  
  
Index: doc/how_to_install_on_RedHat7.2.txt
diff -u doc/how_to_install_on_RedHat7.2.txt:1.7 doc/how_to_install_on_RedHat7.2.txt:1.8
--- doc/how_to_install_on_RedHat7.2.txt:1.7	Fri May 10 12:17:17 2002
+++ doc/how_to_install_on_RedHat7.2.txt	Fri May 10 16:51:20 2002
@@ -1,4 +1,4 @@
-$Id: how_to_install_on_RedHat7.2.txt,v 1.7 2002/05/10 16:17:17 harris41 Exp $
+$Id: how_to_install_on_RedHat7.2.txt,v 1.8 2002/05/10 20:51:20 harris41 Exp $
 
 (Alternative approach to perl module-ing is at end...)
 (Alternative approach to mysql is at end...)
@@ -295,7 +295,7 @@
 mysql> SET PASSWORD FOR root@localhost=PASSWORD('new_password');
 
 ************************************ SECURITY: only allow access from localhost
-mysql> delete * from user where host<>'localhost'
+mysql> delete from user where host<>'localhost'
 
 ------------------------------------------------------------------
 
Index: doc/build/install.html
diff -u doc/build/install.html:1.23 doc/build/install.html:1.24
--- doc/build/install.html:1.23	Fri May 10 15:16:12 2002
+++ doc/build/install.html	Fri May 10 16:51:20 2002
@@ -1,7 +1,7 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <!-- The LearningOnline Network with CAPA -->
-<!-- $Id: install.html,v 1.23 2002/05/10 19:16:12 harris41 Exp $ -->
+<!-- $Id: install.html,v 1.24 2002/05/10 20:51:20 harris41 Exp $ -->
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"></meta>
@@ -213,7 +213,7 @@
 <table bgcolor="#aaaaaa" border="1"><tr><td>
 <pre>
 shell> mysql -u root -p mysql
-mysql> DELETE * FROM user WHERE host<>'localhost';
+mysql> DELETE FROM user WHERE host<>'localhost';
 </pre>
 </td></tr></table>
 <a name="testing" />