[LON-CAPA-cvs] cvs: doc /build install.html
harris41
lon-capa-cvs@mail.lon-capa.org
Fri, 10 May 2002 16:26:32 -0000
harris41 Fri May 10 12:26:32 2002 EDT
Modified files:
/doc/build install.html
Log:
table captioning is not browser compatible
Index: doc/build/install.html
diff -u doc/build/install.html:1.19 doc/build/install.html:1.20
--- doc/build/install.html:1.19 Fri May 10 12:17:45 2002
+++ doc/build/install.html Fri May 10 12:26:32 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.19 2002/05/10 16:17:45 harris41 Exp $ -->
+<!-- $Id: install.html,v 1.20 2002/05/10 16:26:32 harris41 Exp $ -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"></meta>
@@ -178,16 +178,16 @@
(it does not have to be the Linux OS root password)
</li>
</ul>
+<p>Entering the mysql shell</p>
<table bgcolor="#aaaaaa" border="1"><tr><td>
-<caption>Entering the mysql shell</caption>
<pre>
mysql -u root -p mysql
OR
mysql -u root (depending on whether you have set a root password)
</pre>
</td></tr></table>
+<p>Creating the mysql 'www' user (after entering mysql shell)</p>
<table bgcolor="#aaaaaa" border="1"><tr><td>
-<caption>Creating the mysql 'www' user (after entering mysql shell)</caption>
<pre>
mysql> CREATE DATABASE loncapa;
@@ -199,22 +199,22 @@
mysql> FLUSH PRIVILEGES;
</pre>
</td></tr></table>
+<p>SECURITY: set a password for the mysql 'root' user</p>
<table bgcolor="#aaaaaa" border="1"><tr><td>
-<caption>SECURITY: set a password for the mysql 'root' user</caption>
<pre>
shell> mysql -u root mysql
mysql> SET PASSWORD FOR root@localhost=PASSWORD('ROOTPASSWORD');
</pre>
</td></tr></table>
+<p>SECURITY: set a password for the mysql 'root' user</p>
<table bgcolor="#aaaaaa" border="1"><tr><td>
-<caption>SECURITY: set a password for the mysql 'root' user</caption>
<pre>
shell> mysql -u root mysql
mysql> SET PASSWORD FOR root@localhost=PASSWORD('ROOTPASSWORD');
</pre>
</td></tr></table>
+<p>SECURITY: only allow access from localhost</p>
<table bgcolor="#aaaaaa" border="1"><tr><td>
-<caption>SECURITY: only allow access from localhost</caption>
<pre>
shell> mysql -u root -p mysql
mysql> DELETE * FROM user WHERE host<>'localhost';