gpt4 book ai didi

c++ - Windows 服务问题(C++、WinAPI)

转载 作者:可可西里 更新时间:2023-11-01 11:09:17 24 4
gpt4 key购买 nike

我有一个 Windows 服务问题,我的应用程序正在注册 Windows 服务,但是当我尝试运行该服务时,我收到以下错误:“错误 1053:该服务没有响应启动或控制请求一种及时的时尚”。下面的代码负责注册服务(我从MSDN上得到的)。

SC_HANDLE schSCManager;
SC_HANDLE schService;

path modulePath("some path to executable");

std::string moduleName = narrow(modulePath.native());

if(!GetModuleFileNameA(NULL, &moduleName[0], MAX_PATH))
{
throw std::runtime_error("Cannot register service, error code: " + boost::lexical_cast<std::string>(GetLastError()));
}

// Get a handle to the SCM database.
schSCManager = OpenSCManager(NULL, // local computer
NULL, // ServicesActive database
SC_MANAGER_ALL_ACCESS); // full access rights

if(!schSCManager)
{
throw std::runtime_error("OpenSCManager failed: " + boost::lexical_cast<std::string>(GetLastError()));
}

// Create the service
schService = CreateServiceA(
schSCManager, // SCM database
"name", // name of service
"displayname", // service name to display
SERVICE_ALL_ACCESS, // desired access
SERVICE_WIN32_OWN_PROCESS, // service type
SERVICE_AUTO_START, // start type
SERVICE_ERROR_NORMAL, // error control type
narrow(modulePath.native()).c_str(), // path to service's binary
NULL, // no load ordering group
NULL, // no tag identifier
NULL, // no dependencies
NULL, // LocalSystem account
NULL); // no password

if(!schService)
{
CloseServiceHandle(schSCManager);

throw std::runtime_error("CreateService failed: " + boost::lexical_cast<std::string>(GetLastError()));
}
else
{
//std::cout << "\nService installed successfully\n";
}

CloseServiceHandle(schService);
CloseServiceHandle(schSCManager);

你能帮忙解决这个问题吗?

最佳答案

如果给定的代码是您尝试过的唯一代码,那么您缺少了一些对 Windows 服务的重要要求。请看一下 documentation

您至少需要一个service main function(与main方法不同!)和一个control handler function,因为您无法处理“start”命令,如果没有注册控制处理函数(在服务主程序中完成)

为了正常工作,您需要:

  1. 普通主要方法,确定您是否要安装服务或以其他方式启动服务控制调度程序和服务 SERVICE_TABLE_ENTRY
    该表主要包含进程名称和指向其服务主要功能的功能指针
  2. 你需要service main函数来注册函数服务控制处理函数,然后启动服务代码函数
  3. 服务代码函数包含与服务工作相关的代码,是服务的核心
  4. 您需要服务控制处理器函数。它是从 Windows 的服务控制管理器调用的,每当控制代码被发送到服务时...这是接收“停止”命令的方法...如果此功能不存在或未正确注册你最终可能会遇到上面提到的错误......

关于c++ - Windows 服务问题(C++、WinAPI),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8212380/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com