...
|
...
|
@@ -78,7 +78,7 @@ class Chat extends Command |
|
|
public function register()
|
|
|
{
|
|
|
// 初始化register
|
|
|
new Register('text://0.0.0.0:1238');
|
|
|
new Register('text://127.0.0.1:1238');
|
|
|
}
|
|
|
|
|
|
// 初始化 bussinessWorker 进程
|
...
|
...
|
@@ -121,7 +121,7 @@ class Chat extends Command |
|
|
// 本机ip,分布式部署时使用内网ip
|
|
|
$gateway->lanIp = '127.0.0.1';
|
|
|
// 内部通讯起始端口,假如$gateway->count=4,起始端口为4000
|
|
|
// 则一般会使用4000 4001 4002 4003 4个端口作为内部通讯端口
|
|
|
// 则一般会使用4000 4001 4002 4003 4个端口作为内部通讯端口
|
|
|
$gateway->startPort = 2900;
|
|
|
// 服务注册地址
|
|
|
$gateway->registerAddress = '127.0.0.1:1238';
|
...
|
...
|
|