You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 8, 2023. It is now read-only.
As as I run edward start mongo, I got the following error:
mongo > Start: [Failed] (176.66ms)
runner process exited
Cleanup > mongo > Stop: [Failed] (54.025µs)
open /proc/8592: no such file or directory
Error: runner process exited
It looks edward is expecting to check the pid 8592, but this pid could be already exited.
But ps -ef |grep mongo, shows the mongodb service is running.
Because the call to service start is launching a daemon, it won't be opening a port itself. By default, Edward will expect a port to be opened before the process exits.
I am running on ubuntu 16.04, the port check not working. The config I'm using is : "name": "mongo", "commands": { "launch": "sudo service mongod start", "stop" : "sudo service mongod stop" }, "launch_checks": { "ports": [27017] }, "requiresSudo" : true, "watch": { "include": [ "mongo" ] }
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi,
I am using the json below to start the mongodb,
"services": [ { "name": "mongo", "commands": { "launch": "sudo service mongod start", "stop" : "sudo service mongod stop" }, "launch_checks": null, "requiresSudo" : true, "watch": { "include": [ "mongo" ] } } ]
As as I run edward start mongo, I got the following error:
It looks edward is expecting to check the pid 8592, but this pid could be already exited.
But ps -ef |grep mongo, shows the mongodb service is running.
Thanks,
John
The text was updated successfully, but these errors were encountered: