相关文章推荐
英俊的海龟  ·  Workbook.XmlImport 方法 ...·  1 年前    · 
瘦瘦的海豚  ·  请大侠帮助: ...·  1 年前    · 


SERVICE_FAILURE_ACTIONS sdBuf={0};
BOOL bSuccess=TRUE;

if (argc!=2)
{
return 1;
}
// Open a handle to the service.
SC_HANDLE sch=OpenSCManager(NULL,NULL,SC_MANAGER_ALL_ACCESS);
if (sch==NULL)
{
return 1;
}
SC_HANDLE schService = OpenService(
sch, // SCManager database
argv[1], // name of service
SC_MANAGER_ALL_ACCESS); // need CHANGE access
if (schService == NULL)
{
printf("OpenService failed (%d)\n", GetLastError());
return FALSE;
}
sdBuf.lpRebootMsg=NULL;
sdBuf.dwResetPeriod=3600*24;
SC_ACTION action[3];
action[0].Delay=60*1000;
action[0].Type=SC_ACTION_RESTART;
action[1].Delay=0;
action[1].Type=SC_ACTION_NONE;
action[2].Delay=0;
action[2].Type=SC_ACTION_NONE;
sdBuf.cActions=3;
sdBuf.lpsaActions=action;
sdBuf.lpCommand=NULL;
if( !ChangeServiceConfig2(
schService,
SERVICE_CONFIG_FAILURE_ACTIONS,
&sdBuf) )
{
printf("%s ChangeServiceConfig2 failed\n",argv[1]);
bSuccess = FALSE;
}
else
printf("%s ChangeServiceConfig2 succeeded\n",argv[1]);

CloseServiceHandle(schService);


解决:Config service failed to start in 120 seconds! Please check ./service/apollo-service.log...

启动Apollo分布式配置中心的时候,经常报这个错:Config service failed to start