Summary | Setup.php does not create mysql user and DB permissions |
Queue | Horde Groupware Webmail Edition |
Queue Version | 1.0.3 |
Type | Bug |
State | Not A Bug |
Priority | 2. Medium |
Owners | |
Requester | lfbm.andamentos (at) gmail (dot) com |
Created | 11/04/2007 (6479 days ago) |
Due | |
Updated | 11/05/2007 (6478 days ago) |
Assigned | |
Resolved | 11/05/2007 (6478 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
State ⇒ Not A Bug
State ⇒ Unconfirmed
Priority ⇒ 2. Medium
Type ⇒ Bug
Summary ⇒ Setup.php does not create mysql user and DB permissions
Queue ⇒ Horde Groupware Webmail Edition
The script does not create the horde user in MySQL and does not define
horde DB permissions.
I think this is the missing part:
"USE mysql;
REPLACE INTO user (host, user, password)
VALUES (
'localhost',
'horde',
-- IMPORTANT: Change this password!
PASSWORD('horde')
);
REPLACE INTO db (host, db, user, select_priv, insert_priv, update_priv,
delete_priv, create_priv, drop_priv, index_priv)
VALUES (
'localhost',
'horde',
'horde',
'Y', 'Y', 'Y', 'Y',
'Y', 'Y', 'Y'
);
-- Make sure that priviliges are reloaded.
FLUSH PRIVILEGES;"