Ruby on Rails:如何在 Windows 上后台自动启动 WEBrick 服务器?

发布于 2024-10-07 19:47:22 字数 183 浏览 3 评论 0原文

为了在 Windows XP 上运行我的 Rails 应用程序,我打开命令行,cd 到应用程序的目录,然后运行 ​​rails server

我想自动执行此操作,这样每次打开计算机时,我所要做的就是在浏览器中输入 localhost:3000

我怎么能这样做呢?

In order to run the my Rails application on Windows XP I open a command line, cd to application's directory, and then run rails server.

I would like to automate this, such that every time I turn on my computer, all I'll have to do is to type localhost:3000 in a browser.

How could I do this ?

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

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

发布评论

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

评论(5

挽清梦 2024-10-14 19:47:22

更简单的方法是使用您在命令提示符中给出的指令创建一个批处理文件,例如

d:

cd 项目\myapp

Ruby 脚本\服务器

然后将该文件的副本拖放到 Windows 开始 ->所有程序 ->启动文件夹。

The simpler way is to create a batch file with the instruction what you give in the command prompt like

d:

cd projects\myapp

ruby script\server

and then drop a copy of the file to Windows Start -> All Programs -> start up folder.

会发光的星星闪亮亮i 2024-10-14 19:47:22

你这样做的可能性很小。

使用注册表,您可以使用 HKLM\Software\Microsoft\Windows\CurrentVersion\Run< /a> 或者更好的方法是创建一个服务,您可以查看此知识库,其中包含一些内容说明如何为您想要的任何可执行文件提供服务。

You have few possibilities to do that.

using the registry you can use HKLM\Software\Microsoft\Windows\CurrentVersion\Run or the better approach would be to create a service, you can see this KB with some instruction how to make a service of whatever executable you want.

超可爱的懒熊 2024-10-14 19:47:22

您是否考虑过 AUTOEXEC.BAT 或创建一些批处理文件。您创建在启动时运行的正确 cmd 命令。 http://www.aumha.org/a/batches.php

have you thought about , AUTOEXEC.BAT or creating some batch files. you create right cmd commands that are run at start up. http://www.aumha.org/a/batches.php

深海蓝天 2024-10-14 19:47:22

最好的方法是将您的应用程序转变为服务。 Mongrel(类似于 webrick 的 Web 服务器)有一个名为 mongrel_service 的解决方案,但与 Rails 不兼容3(由于 Rails 内部发生了一些变化)

但是,您可以重新调整 mongrel_service 代码库的用途,以与瘦,另一个与 Rails 3 一起使用的网络服务器一起使用。

请查看 这里是对 mongrel_service 脚本的唯一引用。将其更改为thin start 可能会起作用。

也许不是您正在寻找的答案(因为还有一些工作要做),但确实是这样:)

The best approach is turn your application into a service. There is a solution for Mongrel (a web server similar to webrick) called mongrel_service, but is not compatible with Rails 3 (due several changes of Rails internals)

However, you can repurpose mongrel_service codebase to work with thin, another webserver that works with Rails 3.

Please look here where is the only reference to mongrel_service script. changing it to thin start could work.

Perhaps is not the answer you're looking for (as there is some work to be done) but is something :)

我爱人 2024-10-14 19:47:22

启动 ruby​​w 脚本/rails 服务器 webrick

start ->在另一个控制台中启动
红宝石->脱离控制台运行 ruby

start rubyw script/rails server webrick

start -> start in another console
rubyw -> run ruby detached from console

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