我正在尝试在不同的端口部署相同播放应用程序的两个实例,并通过前面的nginx在之间进行负载平衡。
根据manual,要启动多个播放实例,这些是命令。
$ start -Dhttp.port=9998
$ start -Dhttp.port=9999
但是,如果我给出了这些,第一个命令正确地在端口9998中启动我的应用程序,但第二个命令无法通过发出以下消息来执行此操作。
This application is already running (Or delete /play/app/folder/RUNNING_PID file)
我正在使用Ubuntu 12.05。
那么,如何启动单个播放实例的多个实例呢?
答案 0 :(得分:6)
$ start -Dhttp.port=9998 -Dpidfile.path=/path/to/app1/pidfile
$ start -Dhttp.port=9999 -Dpidfile.path=/path/to/app2/pidfile
确保传递给每个应用的两个pidfile路径不同。
这里记录在案:
http://www.playframework.com/documentation/2.2.x/ProductionConfiguration