2013-04-03 115 views
0

我是一個完整的Ruby on Rails新手繼railstutorial.org 我剛安裝了rails 3.2.13,創建了一個項目rails new導軌服務器不啓動任何服務器

但是使用命令我不能啓動服務器:

rails server 

它返回下面的rails命令的幫助信息(而不是使用WEBrick信息),它完全不提server命令。那我該如何啓動服務器?由於

Usage: 
rails new APP_PATH [options] 
Options: 
-r, [--ruby=PATH]    # Path to the Ruby binary of your choice 
          # Default: /Users/nathanzylbersztejn/.rvm/rubies/ruby-2.0.0-p0/bin/ruby 
-b, [--builder=BUILDER]  # Path to a application builder (can be a filesystem path or URL) 
-m, [--template=TEMPLATE]  # Path to an application template (can be a filesystem path or URL) 
    [--skip-gemfile]   # Don't create a Gemfile 
    [--skip-bundle]   # Don't run bundle install 
-G, [--skip-git]    # Skip Git ignores and keeps 
-O, [--skip-active-record]  # Skip Active Record files 
-S, [--skip-sprockets]   # Skip Sprockets files 
-d, [--database=DATABASE]  # Preconfigure for selected database (options: mysql/oracle/postgresql/sqlite3/frontbase/ibm_db/sqlserver/jdbcmysql/jdbcsqlite3/jdbcpostgresql/jdbc) 
          # Default: sqlite3 
-j, [--javascript=JAVASCRIPT] # Preconfigure for selected JavaScript library 
          # Default: jquery 
-J, [--skip-javascript]  # Skip JavaScript files 
    [--dev]     # Setup the application with Gemfile pointing to your Rails checkout 
    [--edge]     # Setup the application with Gemfile pointing to Rails repository 
-T, [--skip-test-unit]   # Skip Test::Unit files 
    [--old-style-hash]   # Force using old style hash (:foo => 'bar') on Ruby >= 1.9 

Runtime options: 
-f, [--force] # Overwrite files that already exist 
-p, [--pretend] # Run but do not make any changes 
-q, [--quiet] # Suppress status output 
-s, [--skip]  # Skip files that already exist 

Rails options: 
-h, [--help]  # Show this help message and quit 
-v, [--version] # Show Rails version number and quit 

Description: 
    The 'rails new' command creates a new Rails application with a default 
    directory structure and configuration at the path you specify. 

    You can specify extra command-line arguments to be used every time 
    'rails new' runs in the .railsrc configuration file in your home directory. 

Note that the arguments specified in the .railsrc file don't affect the 
defaults values shown above in this help message. 

回答

1

你有沒有嘗試以下方法:

./script/rails s 
+0

我不得不從我的應用程序的根致電軌道。我沒有得到。謝謝你指出我朝着正確的方向 – znat

0

它類似於這個問題link。你可以參考這個清楚解釋你的問題。

Link