Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The service did not respond to the start or control request in a timely fashion.HELP!!!!! #377

Open
Yihsiwei opened this issue Jul 4, 2023 · 11 comments

Comments

@Yihsiwei
Copy link

Yihsiwei commented Jul 4, 2023

Why can deleting ”Executable: "C:\\Windows\\System32\\cmd.exe"“ be successful
Executable: "C:\\Windows\\System32\\cmd.exe" will result in error deletion:The service did not respond to the start or control request in a timely fashion.

package main

import (
	"log"
	"time"

	"github.com/kardianos/service"
)

func main() {
	serviceName := "MyService" 
	svcConfig := &service.Config{
		Name:        serviceName,
		DisplayName: "My Service",
		Description: "My Golang service running on Windows",
		Executable:  "C:\\Windows\\System32\\cmd.exe",
	}

	prg := &program{}

	s, err := service.New(prg, svcConfig)
	if err != nil {
		log.Fatal(err)
	}

	go s.Run()

	time.Sleep(time.Duration(10) * time.Second)

	err = s.Install()
	if err != nil {
		log.Fatalf("无法安装服务:%v", err)
	}
	log.Println("服务安装成功")

	// 启动服务
	err = s.Start()
	if err != nil {
		log.Fatalf("无法启动服务:%v", err)
	}
	log.Println("服务启动成功")
}

type program struct{}

func (p *program) Start(s service.Service) error {
	go p.run()
	return nil
}

func (p *program) run() {

}

func (p *program) Stop(s service.Service) error {

	return nil
}
@adrianosela
Copy link

In your code, run() should block e.g. at last have an infinite loop (e.g. for {}) -- but ... i am also facing the same issue.

@brucealthompson
Copy link

I am ALSO facing the same issue.
Neither s.Start() or s.Stop() call the respective (p *program) Start or (p *program) Stop functions
s.Run() DOES call (p *program) Start but that does not result in a properly running service in Windows.
Is there a work around to these issues?
I have a feeling that this package does not really work.

@adrianosela
Copy link

Hey @brucealthompson.

The issue you are facing is because on windows, the operating system will call the executable with some flags that your executable must respond to.

@adrianosela
Copy link

adrianosela commented Mar 19, 2024

The package does work. Here's some more info on how we solved the issue you are seeing and why it occurs: https://github.com/borderzero/border0-cli/blob/main/cmd/connector.go#L208-L234

Specifically this part (e.g. passing the service flag value to this library) https://github.com/borderzero/border0-cli/blob/main/cmd/connector.go#L224-L229

@brucealthompson
Copy link

brucealthompson commented Mar 19, 2024

@adrianosela Thanks for the quick response on this.
I am looking at the code you referenced but am having a difficult time visualizing what exactly is needed to handle Windows service control messages based on this code.
This looks like an important part of the puzzle:
connectorStartCmd.Flags().StringVarP(&serviceFlag, "service", "s", "", "used to provide service actions e.g. start | stop | install | uninstall...")
Do you know of a more stripped down code example that handles Windows service control messages?

@adrianosela
Copy link

adrianosela commented Mar 19, 2024

@brucealthompson

My understanding is for any windows service, the OS will invoke the service's executable with some value of "-service" to start it. And the executable must handle it. If the executable does not handle it by responding appropriately, the operating system will consider it unhealthy/not-started. Those are those "failed to respond" error messages you see.

I figured this library would handle control messages appropriately by calling the "Control" function in this library with the value of the flag.

I'm not a windows person and I didnt really dive into it as the above worked for me

@brucealthompson
Copy link

I think I get it now. My service application is already handling the -service flag but not all the verbs that go with it (like start and stop). I will try it.

@brucealthompson
Copy link

Well....
I spent a full day on this. I actually have a VERY similar service based on this same package and it works fine.
I decided to reorganize code for both services so they are almost identical now.
Same issue. One service works fine. The other gives an immediate timeout error. The error obviously has NOTHING to do with a timeout. Here is the code in the golang windows syscall package that fails:
func StartService(service Handle, numArgs uint32, argVectors **uint16) (err error) {
r1, _, e1 := syscall.Syscall(procStartServiceW.Addr(), 3, uintptr(service), uintptr(numArgs), uintptr(unsafe.Pointer(argVectors)))
if r1 == 0 {
err = errnoErr(e1)
}
return
}

IMHO, there is clearly something wrong with kardianos/service having to do with its Windows implementation.

@brucealthompson
Copy link

Final word on this.
I FINALLY got it all to work!!!
kardianos/service DOES work with Windows
The core of the issue for me is that there are MANY golang packages (for example "encoding/json") that end up putting the service executable into interactive mode. Windows will NOT start a service in interactive mode. It gives the cryptic error "The service did not respond to the start or control request in a timely fashion".
What I would recommend is that kardianos/service checks if the application is in interactive mode in the windows implementation of service.Control(start) and give a non-cryptic error message. This will keep a lot of people from tearing their hair out when using this package for windows applications.

@trong11
Copy link

trong11 commented Apr 23, 2024

Final word on this. I FINALLY got it all to work!!! kardianos/service DOES work with Windows The core of the issue for me is that there are MANY golang packages (for example "encoding/json") that end up putting the service executable into interactive mode. Windows will NOT start a service in interactive mode. It gives the cryptic error "The service did not respond to the start or control request in a timely fashion". What I would recommend is that kardianos/service checks if the application is in interactive mode in the windows implementation of service.Control(start) and give a non-cryptic error message. This will keep a lot of people from tearing their hair out when using this package for windows applications.

So do you know waht can i do to run the executable as service in Windows ?

@brucealthompson
Copy link

Final word on this. I FINALLY got it all to work!!! kardianos/service DOES work with Windows The core of the issue for me is that there are MANY golang packages (for example "encoding/json") that end up putting the service executable into interactive mode. Windows will NOT start a service in interactive mode. It gives the cryptic error "The service did not respond to the start or control request in a timely fashion". What I would recommend is that kardianos/service checks if the application is in interactive mode in the windows implementation of service.Control(start) and give a non-cryptic error message. This will keep a lot of people from tearing their hair out when using this package for windows applications.

So do you know waht can i do to run the executable as service in Windows ?

I ended up just creating a small service executable that issues os.Exec() on the executable that I want to run as a service.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants