次にデータベースの設定です。
データベースはmysqlを使用し、事前に設定しておきます。(再掲)
(参考)
Movabletype Document : MySQLの設定
http://www.movabletype.jp/documentation/mt5/database/mysql.html
データベースはmysqlを使用し、事前に設定しておきます。(再掲)
$ cd /usr/local/mysql/bin
$ ./mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or g.
Your MySQL connection id is 2
Server version: 5.1.41 MySQL Community Server (GPL)
Type 'help;' or 'h' for help. Type 'c' to clear the current input statement.
mysql> create database mt;
Query OK, 1 row affected (0.00 sec)
mysql> grant all on mt.* to mtuser@localhost identified by 'mtpasswd';
Query OK, 0 rows affected (0.04 sec)
(参考)
Movabletype Document : MySQLの設定
http://www.movabletype.jp/documentation/mt5/database/mysql.html