version 1.18, 2002/05/02 01:30:15
|
version 1.21, 2002/05/10 16:30:03
|
Line 168 against an FTP repository.
|
Line 168 against an FTP repository.
|
<p> |
<p> |
The following commands describe how to configure the MySQL database |
The following commands describe how to configure the MySQL database |
on your LON-CAPA server. |
on your LON-CAPA server. |
|
<br />Note: |
</p> |
</p> |
|
<ul> |
|
<li>you should substitute 'WWWPASSWORD' with the value for 'lonSqlAccess' |
|
present inside <tt>/etc/httpd/conf/loncapa.conf</tt> <i>or in access.conf</i> |
|
</li> |
|
<li>you should substitute 'ROOTPASSWORD' with something very hard to guess |
|
(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> |
<table bgcolor="#aaaaaa" border="1"><tr><td> |
<pre> |
<pre> |
Enter the mysql shell--- |
|
mysql -u root -p mysql |
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> |
|
<pre> |
|
mysql> CREATE DATABASE loncapa; |
|
|
Run these commands--- |
mysql> INSERT INTO user (Host, User, Password) |
CREATE DATABASE loncapa; |
mysql> VALUES ('localhost','www',password('WWWPASSWORD')); |
|
|
INSERT INTO user (Host, User, Password) |
|
VALUES ('localhost','www',password('SOMEPASSWORD')); |
|
|
|
GRANT ALL PRIVILEGES ON *.* TO www@localhost; |
|
|
|
FLUSH PRIVILEGES; |
mysql> GRANT ALL PRIVILEGES ON *.* TO www@localhost; |
|
|
|
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> |
|
<pre> |
shell> mysql -u root mysql |
shell> mysql -u root mysql |
mysql> SET PASSWORD FOR root@localhost=PASSWORD('new_password'); |
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> |
|
<pre> |
|
shell> mysql -u root -p mysql |
|
mysql> DELETE * FROM user WHERE host<>'localhost'; |
</pre> |
</pre> |
</td></tr></table> |
</td></tr></table> |
<a name="testing" /> |
<a name="testing" /> |