!!!9Arrows http://9arrows.com/ オープンソースのプロジェクト管理ツール !!!インストール !!手順 基本的にはREADME-jaに書いてある通り。 1.ディレクトリのバーミッション設定 2.9Arrowsを解凍して適当なディレクトリに設置 3.config/database.ymlを編集して、DBの設定を行う 4. rake db:migrate 5. rake db:fixtures:load 6../script/server webrick --port=3000 7.http://サーバ:3000 にアクセス ※rakeでエラーが出る場合は gem install rake --http-proxy http://localhost:5865 ※railsがインストールされていない場合は gem install -v=2.1.0 rails --http-proxy http://localhost:5865 !!DBにmysqlを使う場合 config/database.ymlの adapter: postgresql を adapter: mysql に変更。 !!DBにPostgresqlを使う場合 yum install postgresql-devel gem install pg --http-proxy http://localhost:5865 設定ファイル修正 vi /var/lib/pgsql/data/pg_hba.conf #local all all ident sameuser local all all trust #host all all ident sameuser host all all trust !!!その他 !!ログイン後にパスワードが分からなくなった場合 select login_id, srcpassword from mst_users; でパスワードを確認できる。 {{category2 ツール,Web}}