-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
start beats as a background process #984
Comments
Please be aware that there are known runtime concerns with daemonizing within Golang golang/go#227 there are also additional concerns for daemonizing if a goroutine has occurred prior to the event. |
you can install it as a service: https://www.elastic.co/guide/en/beats/libbeat/current/setup-repositories.html then you can use #service filebeat start |
Installing filebeat as a service is a problem when you don't have sudo privileges. Better if we can have a demon start and stop like this
|
i also wonder why there is no option like --daemon or -d, to start it as background process... |
use |
Or the simpler Either way, neither screen or nohup are replacements for service management systems like systemd, etc. |
If you run |
I know we can do something like
filebeat -c filebeat.yml &
, but I'd love to have an official run option.The text was updated successfully, but these errors were encountered: