Displaying 2 results from an estimated 2 matches for "bjaerris".
Did you mean:
berris
2015 Mar 26
2
Proper check of openssl usage in processes?
Hi All :)
I need to check and possibly update openssl on my fleet of servers. I would
like to avoid reboot if possible. I think that I can:
- update openssl version with yum
- check all daemon processes which are constantly running in the os, for
example for sshd something like
ldd `which sshd` | awk '/\// { print $3 }' | grep crypto | xargs strings
| grep -i openssl
to verify if the
2015 Mar 26
0
Proper check of openssl usage in processes?
Hi,
check this url:
https://bjaerris.com/identifying-services-needing-restart-after-updating-linux-packages/
--
Eero
2015-03-26 11:52 GMT+02:00 Rafa? Radecki <radecki.rafal at gmail.com>:
> Hi All :)
>
> I need to check and possibly update openssl on my fleet of servers. I would
> like to avoid reboot if possible....