次に進む前に、mysqlの導入が必要です。
ネット上の情報を参照して、mysqlを導入しましょう。
システム環境設定にMySQLが表示されれば終了です。
その後、ドキュメントを参照してmt用のdbの設定を行います。
(参考)
http://www.movabletype.jp/documentation/mt5/database/mysql.html
こんな感じでしょうか。
$ ./mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or g.
Your MySQL connection id is 14
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 character set utf8;
Query OK, 1 row affected (0.00 sec)
mysql> grant all on mt.* to mtuser@localhost identified by "mtuser";
Query OK, 0 rows affected (0.39 sec)
ネット上の情報を参照して、mysqlを導入しましょう。
システム環境設定にMySQLが表示されれば終了です。
その後、ドキュメントを参照してmt用のdbの設定を行います。
(参考)
http://www.movabletype.jp/documentation/mt5/database/mysql.html
こんな感じでしょうか。
$ ./mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or g.
Your MySQL connection id is 14
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 character set utf8;
Query OK, 1 row affected (0.00 sec)
mysql> grant all on mt.* to mtuser@localhost identified by "mtuser";
Query OK, 0 rows affected (0.39 sec)