使用Eclipse / Aptana,如何使用项目中的配置设置将WEBrick的默认端口从3000更改为其他任何内容?例如。我希望能够在不同的端口上为不同的项目运行多个服务器。
我没有看到(在Eclipse或我的项目设置中)我可以设置端口?我通过右键单击项目并选择“运行服务器”来运行服务器。
使用:Eclipse Kepler; Aptana Studio 3(3.4.2)
答案 0 :(得分:1)
您可以使用-p
参数设置WEBrick的端口。您应该能够将参数附加到运行配置中。
# 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.
答案 1 :(得分:1)
在Aptana Studio中转到窗口>显示视图>服务器
您可以选择删除和更新与您的应用相关的服务器。