Bug 1464869
| Summary: | Configuration reload (SIGHUP) opens two (never closed) new pipes in subprocess | |||
|---|---|---|---|---|
| Product: | Red Hat Enterprise Linux 7 | Reporter: | yann.morice | |
| Component: | keepalived | Assignee: | Ryan O'Hara <rohara> | |
| Status: | CLOSED CURRENTRELEASE | QA Contact: | Brandon Perkins <bperkins> | |
| Severity: | urgent | Docs Contact: | ||
| Priority: | urgent | |||
| Version: | 7.3 | CC: | cfeist, cluster-maint, salmy, toneata | |
| Target Milestone: | rc | Keywords: | Regression, ZStream | |
| Target Release: | --- | |||
| Hardware: | x86_64 | |||
| OS: | Linux | |||
| Whiteboard: | ||||
| Fixed In Version: | Doc Type: | If docs needed, set a value | ||
| Doc Text: | Story Points: | --- | ||
| Clone Of: | ||||
| : | 1477883 1477907 (view as bug list) | Environment: | ||
| Last Closed: | 2017-08-03 14:39:49 UTC | Type: | Bug | |
| Regression: | --- | Mount Type: | --- | |
| Documentation: | --- | CRM: | ||
| Verified Versions: | Category: | --- | ||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | ||
| Cloudforms Team: | --- | Target Upstream Version: | ||
| Embargoed: | ||||
| Bug Depends On: | ||||
| Bug Blocks: | 1477883, 1477907 | |||
|
Description
yann.morice
2017-06-26 06:46:57 UTC
Since we rebased in 7.4, this bug only needs to be fixed in 7.3.z. Just to show that this problem does not exist in RHEL 7.4: # cat /etc/redhat-release && rpm -q keepalived Red Hat Enterprise Linux Server release 7.4 (Maipo) keepalived-1.3.5-1.el7.x86_64 # keepalived -P -f /etc/keepalived/keepalived.conf # ps -eafwww | grep keepalived root 13321 1 0 08:26 ? 00:00:00 keepalived -P -f /etc/keepalived/keepalived.conf root 13322 13321 0 08:26 ? 00:00:00 keepalived -P -f /etc/keepalived/keepalived.conf # lsof | grep 13321 | grep pipe | wc -l 2 # lsof | grep 13322 | grep pipe | wc -l 2 Now SIGHUP the parent process: # cat /var/run/keepalived.pid 13321 # kill -HUP 13321 # lsof | grep 13321 | grep pipe | wc -l 2 # lsof | grep 13322 | grep pipe | wc -l 2 This is correct. This bug has been copied as 7.3 z-stream (EUS) bug #1477883 and now must be resolved in the current update release, set blocker flag. Setting as CLOSED/CURRENTRELEASE since the rebase in RHEL 7.4 solved this problem. Fixing only for z-stream. |