File:
[LON-CAPA] /
doc /
Attic /
howtoaddusertolonsql
Revision
1.2:
download - view:
text,
annotated -
select for diffs
Wed Jun 28 15:45:31 2000 UTC (24 years, 5 months ago) by
albertel
Branches:
MAIN
CVS tags:
version_0_5_1,
version_0_5,
version_0_4,
stable_2002_spring,
stable_2002_july,
stable_2002_april,
stable_2001_fall,
STABLE,
HEAD
- figured out the exact text to add a user to mysql
start the mysql daemon as /usr/local/bin/safe_mysqld &
Login as root: mysql -u root -p mysql
enter the password as newmysql
add the user www: grant all priveleges on *.* to www@localhost identified by 'newmysql' with grant option;
INSERT INTO user (Host, User, Password)
VALUES ('localhost','www',password('newmysql'));
GRANT ALL PRIVILEGES ON *.* TO www@localhost;
FLUSH PRIVILEGES;
Here the user www has the right to grant privileges to other users.
This can be changed if required with a simple update command on the grant tables
/home/httpd/perl/perlsql/lonsql
/usr/local/mysql/fakeclient
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>