今回使うのはMySQLを使うので、MySQLへrootとでログインしJoomla用のユーザーとデーターベースを作成する。
~]# mysql -u root -p ← MySQLへrootでログイン
Enter password: ← MySQLのrootパスワード応答
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1016 to server version: 5.0.27
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> grant all privileges on joomla.* to joomla@localhost identified by 'パスワード'; ← joomlaデータベース管理ユーザ登録
mysql> create database joomla; ← joomla!データベース作成
Query OK, 1 row affected (0.19 sec)
mysql> exit ← ログアウト
Bye
これでOK!


