4

Rails は初めてで、既存の Rails アプリを AWS Elastic Beanstalk にデプロイしようとしています。しかし、私が得ているのは「おめでとうページ」だけです(参考:「rails server」を使用して「localhost:3000」でアプリを実行できます)

http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/create_deploy_Ruby_rails.htmlに示されている指示に従いました。

どんな助けでも大歓迎です。ありがとう。

これが私がしたことです:

# cd /var/www/myapp
# bundle update
# bundle install
# git init 
# git add .
# git commit -m "Initial commit"
# eb init
 // .....configuration
 // ..
# eb start
# git add .gitignore && git commit -m "Ignore .elasticbeanstalk from Git"
# git aws.push
# eb status --verbose

Retrieving status of environment "pb03-env".
URL     : pb03-env-biyaffm422.elasticbeanstalk.com
Status  : Ready
Health  : Green
Environment Name:       pb03-env
Environment ID:         e-mpnrf7js5g
Solution Stack:         32bit Amazon Linux running Ruby 1.9.3
Version Label:          git-5d8712738fd03dee0d5e6a8782055089e028f22d-1364429448649
Date Created:           2013-03-27 23:48:49
Date Updated:           2013-03-28 00:14:30
Description:            None

RDS Database: AWSEBRDSDatabase | aazyq.c0pga7irhsn.us-east-1.rds.amazonaws.com:3306
Database Engine:        mysql 5.5.27
Allocated Storage:      5
Instance Class:         db.t1.micro
Multi AZ:               False
Master Username:        ebroot
Creation Time:          2013-03-27 23:53:41
DB Instance Status:     available
4

1 に答える 1

4

何が起こっているのか分かりました。それは「git」の問題でした。

これは、次の投稿に示されている同様の問題です: heroku へのデプロイ -- 「レールへようこそ」のデフォルト ページを取り除くことはできません

とにかく、これは私がそれを解決するためにしたことです:

git rm public/index.html
git commit -m "Removed public/index.html"
git aws.push
于 2013-03-28T22:27:57.310 に答える