在 Rails 3 中启动 Rails 服务器
我已经使用以下命令创建了一个新的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
旧版本或 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.您正在混合 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
, notrails server
一步步rails服务器安装:
例如: echo "rvm use 1.9.3-p385@mygemset" > .rvmrc
是的,没什么可做的......:)
Step by Step rails server Installation :
for example : echo "rvm use 1.9.3-p385@mygemset" > .rvmrc
yeah, nothing to do more... :)