0

使用 Eclipse/Aptana,如何使用项目中的配置设置将 WEBrick 的默认端口从 3000 更改为其他任何端口?例如,我希望能够在不同端口上为不同项目运行多个服务器。

我看不到可以在哪里(在 Eclipse 或我的项目设置中)设置端口?我通过右键单击项目并选择“运行服务器”来运行服务器。

使用:Eclipse 开普勒;Aptana 工作室 3 (3.4.2)

4

2 回答 2

1

您可以使用参数设置 WEBrick 的端口-p。您应该能够将参数附加到您的运行配置中。

# ruby script/server -p 8080

还有一些您可能会发现有用的其他参数:

# ruby script/server --help
=> Booting WEBrick...
Usage: ruby server [options]

-p, --port=port                  Runs Rails on the specified port.
                                 Default: 3000
-b, --binding=ip                 Binds Rails to the specified ip.
                                 Default: 0.0.0.0
-e, --environment=name           Specifies the environment to run this server under (test/development/production).
                                 Default: development
-m, --mime-types=filename        Specifies an Apache style mime.types configuration file to be used for mime types
                                 Default: none
-d, --daemon                     Make Rails run as a Daemon (only works if fork is available -- meaning on *nix).
-c, --charset=charset            Set default charset for output.
                                 Default: UTF-8

-h, --help                       Show this help message.
于 2013-09-20T12:25:17.103 回答
1

在 Aptana Studio 中,转到窗口 > 显示视图 > 服务器。

在那里,您可以选择删除和​​更新与您的应用程序相关的服务器。

于 2013-09-20T13:09:31.963 回答