Orleans的配置有点乱的
整理了下
.Configure<EndpointOptions>(options => { //这里的IP决定了是本机 还是内网 还是公网 options.AdvertisedIPAddress = GetInternalIp(); //监听的端口 options.SiloPort = 11112; //监听的网关端口 options.GatewayPort = 30000; //监听的silo 远程连接点 options.GatewayListeningEndpoint = new IPEndPoint(options.AdvertisedIPAddress, options.GatewayPort); //监听的silo 远程端口连接点 options.SiloListeningEndpoint = new IPEndPoint(options.AdvertisedIPAddress, options.SiloPort); }) //监听的主silo 远程连接点 为空则创建一个主silo连接点 .UseDevelopmentClustering(new IPEndPoint(IPAddress.Parse("169.254.20.136"),11111))
其他连接函数都是对这两个的封装
.UseStaticClustering(new IPEndPoint[] { new IPEndPoint(IPAddress.Parse(""), 30000) })
客户端配置这个就行了
可以连接多个网关
回环地址的设置方法
.ConfigureEndpoints(IPAddress.Parse(""), 11111, 30000, true) .UseAdoNetClustering(options => { options.ConnectionString = ""; options.Invariant = "MySql.Data.MySqlClient"; })