production データベースを使用する
移転しました。
DB構築 rake db:migrate
Production環境にmigrationする場合は
rake db:migrate RAILS_ENV=production
とRAILS_ENVにproductionを指定する。
データ移行
mysql -u root detabase_development -p > select * into outfile '/tmp/hogetables.txt' from hogetables; > use database_production; > load data infile '/tmp/hogetables.txt' into table hogetables;
モード設定
config/environment.rb
以下を指定 ENV['RAILS_ENV'] ||= 'production'
環境設定
cd vi .bash_profile ----- 以下を追加 export RAILS_ENV=production -----
再起動
cd ROOT_PROJECT mongrel_rails cluster::stop mongrel_rails cluster::start