InstantRails的安装
- 首先,从InstantRailsWiki: Instant Rails下载InstantRails的最新版。
解压下载文件、运行InstantRails.exe。
确认Apache和MySQL已经启动。
接下来运行例子程序。选择InstantRails的I→Rails Applications→Manage Rails Applications。
选中cookbook,按下start with mongrel,、控制台显示如下信息:
** Starting Mongrel listening at 0.0.0.0:3001
** Starting Rails with development environment...
** Rails loaded.
** Loading any Rails specific GemPlugins
** Signals ready.INT => stop (no restart).
** Mongrel available at 0.0.0.0:3001
** Use CTRL-C to stop.
在浏览器的地址栏输入http://localhost:3001/,确认例子程序能否运行。
redMine的安装
- 接下来下载redMine。从Redmine - Overview - Redmine这个网站下载最新版的redMine。
解压的文件夹拷贝到InstantRails的rails_apps下。
redmine文件夹下config\database.yml做如下修改:
production:
adapter: mysql
database: redmine
host: localhost
username: redmine
password: redmine
encoding: utf8 - development:
adapter: mysql
database: development
host: localhost
username: redmine
password: redmine
encoding: utf8 - test:
adapter: mysql
database: test
host: localhost
username: redmine
password: redmine
encoding: utf8
接下来,修改MySQL的配置。从InstantRails的I→Configure→Database (via PhpMyAdmin)启动。
打开SQL窗口,输入以下语句。
create database redmine character set utf8;
grant all privileges on redmine.* to redmine@localhost identified by 'redmine';
create database development character set utf8;
grant all privileges on development.* to redmine@localhost identified by 'redmine';
create database test character set utf8;
grant all privileges on test.* to redmine@localhost identified by 'redmine';
从InstantRails的I→Rails Applications→Open Ruby Console Window启动,执行以下命令。马上数据库表就自动生成了。
> cd redmine-0.5.0
> rake db:migrate RAILS_ENV="production"
> rake load_default_data RAILS_ENV="production"
> rake db:migrate RAILS_ENV="development"
> rake load_default_data RAILS_ENV="development"
> rake db:migrate RAILS_ENV="test"
> rake load_default_data RAILS_ENV="test"
编辑redmine\config\environment.rb
在Rails::Initializer.run do |config|后添加
config.action_controller.session_store = :PStore
至此,安装完毕。
redMine的启动
- 启动Web服务器。在Ruby Console运行以下命令。
> ruby script/server -e production
但是如果在script文件夹下执行,就会有如下错误发生。
=> Booting Mongrel (use 'script/server webrick' to force WEBrick)
=> Rails application starting on http://0.0.0.0:3000/
=> Call with -d to detach
=> Ctrl-C to shutdown server
!!! Path to log file not valid: log/mongrel.log
mongrel::start reported an error. Use mongrel_rails mongrel::start -h to get help.
Exiting
在浏览器输入http://localhost:3000/,redMine就可以使用了。
- 使用用户名:admin、密码:admin登陆,可以尝试追加用户等等操作。
InstanRails下选择“I”——“Configure”——"Apache",
添加虚拟服务器配置:
<VirtualHost 192.168.0.X>
ServerName www.workstation.com
ProxyPass / http://www.workstation.com:3000/
ProxyPassReverse / http://www.workstation.com:3000
</VirtualHost>