2010年9月24日金曜日

Redmineをインストールしたい! その6

設定!

Redmine 1.0.1 リリース | Redmine.JP Blog によると Redmine 0.9のインストール手順 | Redmine.JP Blog と同じでいいんだって。

MySQL

/etc/mysql/conf.d にこんなファイルたちを放っておいた。

utf8.cnf
[mysqld]
default-character-set = utf8

[mysqld_safe]
default-character-set = utf8

[mysql]
default-character-set = utf8

データベースを作ったり。MySQL の root のパスワードはすでに変更済みなの。
$ mysql -u root -p
Enter password:
mysql> create database redmine charset = utf8;
mysql> grant all privileges on redmine.* to userRedmine@'127.0.0.1' identified by 'p*a*s*s*w*o*r*d';
mysql> exit;

config/***.yml

config/database.yml.example をコピーして config/database.yml を作成。
production: を変更。
production:
adapter: mysql
database: redmine
host: localhost
username: userRedmine
password: p*a*s*s*w*o*r*d
encoding: utf8

config/email.yml.example をコピーして config/email.yml を作成。
# === Simple SMTP server at localhost のあたりを変更。
production:
delivery_method: :smtp
smtp_settings:
address: "localhost"
port: 25

0 件のコメント: