phpGroupWare 用のデータベースを作成します。
PostgreSQL 選択時
1. データベースユーザ phpgroupware を作成します。
# su - postgres
$ createuser -P
Enter name of user to add: phpgroupware
Enter password for user: パスワードを入力
Enter it again: 同じパスワードを入力
Shall the new user be allowed to create databases? (y/n) y
Shall the new user be allowed to create more new users? (y/n) n
$
|
2. 空のデータベース phpgroupware を作成します。
$ createdb -U phpgroupware phpgroupware
|
MySQL 選択時
1. データベースとユーザ phpgroupware を作成します。
$ mysql -u root
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1 to server version: 4.0.21-log
Type 'help;' or '\h' for help. Type '\c' to clear the buffer
mysql> create database phpgroupware;
Query OK, 1 row affected (0.00 sec)
mysql> grant all on phpgroupware.* to phpgroupware@localhost identified by 'password';
Query OK, 0 rows affected (0.01 sec)
mysql> set password for phpgroupware=password('xxxxxxxx');
Query OK, 0 rows affected (0.01 sec)
mysql> \q
Bye
$
|
xxxxxxxx は設定するパスワードを入力して下さい
|
|