[dev] Setting up hordemgr user in mysql
Max Kalika
max@the-triumvirate.net
Wed, 01 Nov 2000 07:08:56 -0800 (PST)
Quoting Scott Martin <martin@math.ohiou.edu>:
> I am working on the INSTALL document for Horde/Imp/Turba development
> versions and I was wanting the know the prefered method of setting up the
> hordemgr user. What would be the proper way to set him up so that all he has
> access to is the horde database?
DELETE FROM db WHERE User = 'hordemgr';
INSERT INTO db (Host, User, Db, Select_priv, Insert_priv, Update_priv,
Delete_priv) VALUES ('localhost', 'hordemgr', 'horde', 'Y', 'Y', 'Y', 'Y');
FLUSH PRIVILEGES;
--mk23