version 1.17, 2002/03/01 22:14:00
|
version 1.19, 2002/11/15 23:36:58
|
Line 557 VALUES ('localhost','www',password('newm
|
Line 557 VALUES ('localhost','www',password('newm
|
<P> |
<P> |
<STRONG>Granting privileges to user 'www'</STRONG>: |
<STRONG>Granting privileges to user 'www'</STRONG>: |
<PRE> |
<PRE> |
GRANT ALL PRIVILEGES ON *.* TO www@localhost; |
GRANT ALL PRIVILEGES ON loncapa.* TO 'www@localhost'; |
FLUSH PRIVILEGES; |
FLUSH PRIVILEGES; |
</PRE> |
</PRE> |
</P> |
</P> |
Line 618 As user www, run this command
|
Line 618 As user www, run this command
|
enter the password as SOMEPASSWORD |
enter the password as SOMEPASSWORD |
|
|
To add the user www to the MySQL server, and grant all |
To add the user www to the MySQL server, and grant all |
privileges on *.* to www@localhost identified by 'SOMEPASSWORD' |
privileges on loncapa.* to www@localhost identified by 'SOMEPASSWORD' |
with grant option; |
with grant option; |
|
|
INSERT INTO user (Host, User, Password) |
INSERT INTO user (Host, User, Password) |
VALUES ('localhost','www',password('SOMEPASSWORD')); |
VALUES ('localhost','www',password('SOMEPASSWORD')); |
|
|
GRANT ALL PRIVILEGES ON *.* TO www@localhost; |
GRANT ALL PRIVILEGES ON loncapa.* TO 'www@localhost'; |
|
|
FLUSH PRIVILEGES; |
FLUSH PRIVILEGES; |
|
|