在 Rails 3 中启动 Rails 服务器

发布于 2024-10-08 00:13:02 字数 208 浏览 2 评论 0原文

我已经使用以下命令创建了一个新的 Rails 项目:

rails project_name

但现在在该项目中如果我运行:

rails server

我只是创建一个新的项目调用服务器,它不会启动 webrick。

如何启动服务器并让 Rails 运行?

I have created a new rails project with the command:

rails project_name

but now in that project if I run:

rails server

I just creates a new project call server, it doesn't start webrick.

How do I start the server and get rails running?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

尤怨 2024-10-15 00:13:02

旧版本或 Rails 正在困扰您。使用gem uninstallrails卸载它们。我建议将 RVM 与 gemset 结合使用,为每个项目创建单独的环境。

Old versions or rails are bugging you. Deinstall them using gem uninstall rails. I recommend using RVM with gemsets to create separate environments for each project.

榆西 2024-10-15 00:13:02

您正在混合 Rails 2 和 Rails 3 命令。从外观上看,您使用的是 Rails 2,这意味着启动服务器将是 script/server,而不是 rails server

You're mixing Rails 2 and Rails 3 commands. By the looks of it, you're using Rails 2, which means starting the server would be script/server, not rails server

守护在此方 2024-10-15 00:13:02

一步步rails服务器安装:

  1. 使用“rvm create gemset”创建
  2. Gemsetrails new
  3. goto Rails应用程序目录“cd /”
  4. gem install Rails
  5. echo“rvm use”> .rvmrc
    例如: echo "rvm use 1.9.3-p385@mygemset" > .rvmrc
  6. run - “捆绑安装”
  7. rails

是的,没什么可做的......:)

Step by Step rails server Installation :

  1. Create Gemset using " rvm create gemset "
  2. rails new
  3. goto rails app directory "cd/"
  4. gem install rails
  5. echo "rvm use " > .rvmrc
    for example : echo "rvm use 1.9.3-p385@mygemset" > .rvmrc
  6. run - "bundle install"
  7. rails s

yeah, nothing to do more... :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文