We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi,
sometimes (especially on AWS machines), O/S has missing "killall" package as well as "stunnel" path might be different.
to fix this, install psmisc packages (yum install psmisc), then check where killall command live by running
and edit systemd script with apropriate path;
for me it was:
ExecStart=/bin/stunnel /etc/stunnel/stunnel.conf ExecStop=/bin/killall -9 stunnel
and dont forget to:
systemctl daemon-reload to make sure your updates commit
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
sometimes (especially on AWS machines), O/S has missing "killall" package as well as "stunnel" path might be different.
to fix this, install psmisc packages (yum install psmisc), then check where killall command live by running
which killall
and edit systemd script with apropriate path;
for me it was:
ExecStart=/bin/stunnel /etc/stunnel/stunnel.conf
ExecStop=/bin/killall -9 stunnel
and dont forget to:
systemctl daemon-reload
to make sure your updates commit
The text was updated successfully, but these errors were encountered: