|
Now you need to create a database. In this example we will use MySQL, but
other database drivers are also available. To create a database, you can
use either the shell interface or the web interface. You can choose any name
for the database.
$ csoftadm
csoftadm> db mysql add mybugzilla
Created database `mybugzilla'.
You also need to create a MySQL user and grant it the following rights
over the database.
csoftadm> db mysql useradd mybugzilla
allow access from host? localhost (enter)
password for mybugzilla? (password)
password for mybugzilla? (again) (password)
csoftadm> db mysql grant
database? mybugzilla
database user? mybugzilla
rights to grant? (...) select,insert,update,delete,index,alter,
create,lock tables,create temporary tables,
drop,references
Granted select,... rights to mybugzilla user.
The Bugzilla installation guide recommends specific MySQL parameters at
this point. You can assume that your server's MySQL daemon is already
using them.
|