我已经创建了新的复制。现在我面临的问题是什么:
当我去 ?start 时,'View Agent Snapshot Status'它刚刚开始工作,第一行显示“Starting Agent”,然后继续工作、工作并持续工作。
一段时间后,它显示以下消息:“复制代理在 10 分钟内没有记录进度消息。这可能表明代理没有响应或系统活动频繁。验证记录是否正在复制到目标以及与订阅服务器、发布服务器的连接,和分销商仍然活跃。”
我尝试了我发现的以下解决方案,我已将分发服务器的 @HeartBeat_interval 属性的值从 10 增加到 30,但没有成功。
我有 Sql Server 2008 R2。
任何帮助将不胜感激。
我在IOS设备上遇到推送通知的APNS php代码问题,我有两个独立的开发和生产连接.
网址:'ssl://gateway.sandbox.push.apple.com:2195'
$push = new ApnsPHP_Push(
ApnsPHP_Abstract::ENVIRONMENT_SANDBOX,
'APNS_Dev_ISAS.pem'
);
$myNewLogger = new MyNewLogger();
$push->setLogger($myNewLogger);
// Set the Provider Certificate passphrase
$push->setProviderCertificatePassphrase('1234567');
$push->setRootCertificationAuthority('APNS_Dev_ISAS.pem');
$push->connect();
Run Code Online (Sandbox Code Playgroud)
问题:
网址:ssl://gateway.push.apple.com:2195
$push = new ApnsPHP_Push(
ApnsPHP_Abstract::ENVIRONMENT_PRODUCTION,
'APNS_PROD_ISAS.pem'
);
$myNewLogger = new MyNewLogger();
$push->setLogger($myNewLogger);
// Set the Provider Certificate passphrase
$push->setProviderCertificatePassphrase('12345678');
$push->setRootCertificationAuthority('APNS_PROD_ISAS.pem');
$push->connect();
Run Code Online (Sandbox Code Playgroud)
连接错误: 信息:尝试ssl://gateway.push.apple.com:2195 ...错误:无法连接到'ssl://gateway.push.apple.com:2195':( 0)信息:重试连接(1/3)...信息:尝试ssl://gateway.push.apple.com:2195 ...错误:无法连接到'ssl://gateway.push.apple.com:2195 ':( 0)INFO:重试连接(2/3)...信息:尝试ssl://gateway.push.apple.com:2195 ...错误:无法连接到'ssl://网关. push.apple.com:2195':( 0)信息:重试连接(3/3)...信息:尝试ssl://gateway.push.apple.com:2195 ...错误:无法连接到'ssl://gateway.push.apple.com:2195':( 0)
我谷歌问题,我发现了一些解决方案,我已经检查了一切,一切都很好但没有成功.
真的很感激任何帮助.提前致谢.