-
Notifications
You must be signed in to change notification settings - Fork 640
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
Systemd startup script does not work #29
Comments
I shared this on the Google Group and it may have helped someone, so I'll share here as well... I was able to get my service working properly by making a few small tweaks to the systemd file... Here is my file:
Notice that I removed any reference to the port number in this file as it is referenced in application.conf, but another thing to consider is that you cannot specify privileged ports (80, 443, < 1024, etc) because you are running TheHive as a non-priv user. So be sure that your configured ports are > 1024 (9000, 9443, etc) . |
Thanks @ecapuano for the suggested fix. We will take it into account and update the docs accordingly. |
TheHive user must have enough right to create PID file. So put it in installation directory.
I leave the listen port as it is the default port of all PlayFramework applications (and maybe other). I've updated the documentation to warn on privileged port. |
The text was updated successfully, but these errors were encountered: