Bug 1763745
Summary: | certmonger.service starts but certmonger does not reply on D-Bus in container | ||
---|---|---|---|
Product: | Red Hat Enterprise Linux 8 | Reporter: | Rob Crittenden <rcritten> |
Component: | certmonger | Assignee: | Rob Crittenden <rcritten> |
Status: | CLOSED ERRATA | QA Contact: | ipa-qe <ipa-qe> |
Severity: | unspecified | Docs Contact: | |
Priority: | unspecified | ||
Version: | 8.0 | CC: | extras-qa, jpazdziora, ksiddiqu, mharmsen, nalin, rcritten, ssidhaye, tdudlak |
Target Milestone: | rc | ||
Target Release: | 8.0 | ||
Hardware: | Unspecified | ||
OS: | Unspecified | ||
Whiteboard: | |||
Fixed In Version: | certmonger-0.79.7-4 | Doc Type: | If docs needed, set a value |
Doc Text: | Story Points: | --- | |
Clone Of: | 1656519 | Environment: | |
Last Closed: | 2020-04-28 16:01: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: | 1656519 | ||
Bug Blocks: |
Description
Rob Crittenden
2019-10-21 13:56:23 UTC
It should be possible to test this on host (outside of containers) by increasing the limit of open files (or setting it to unlimited). Something like (untested): echo "DefaultLimitNOFILE=infinity" >> /etc/systemd/system.conf systemctl daemon-reload ipa-server-instal ... Or use strace to ensure that all 1024 (or whatever) fds are not being closed on fork. F 30 container [root@user1 ]# docker exec systemd dnf install -y certmonger Last metadata expiration check: 0:11:46 ago on Fri Mar 6 04:34:32 2020. Package certmonger-0.79.9-1.fc30.x86_64 is already installed. Dependencies resolved. Nothing to do. Complete! [root@user1 ]# docker exec systemd bash -c 'systemctl restart certmonger ; systemctl status certmonger ; dbus-send --system --type=method_call --print-reply --dest=org.fedorahosted.certmonger /org/fedorahosted/certmonger org.freedesktop.DBus.Introspectable.Introspect' ● certmonger.service - Certificate monitoring and PKI enrollment Loaded: loaded (/usr/lib/systemd/system/certmonger.service; disabled; vendor preset: disabled) Active: active (running) since Fri 2020-03-06 04:46:41 UTC; 14ms ago Main PID: 248 (certmonger) CGroup: /system.slice/docker-da73fb1b228ab838b1e5ca98c0256522a35b46a5fc92db3d53f78baad4a6331a.scope/system.slice/certmonger.service ├─248 /usr/sbin/certmonger -S -p /run/certmonger.pid -n ├─259 /usr/libexec/certmonger/certmaster-submit ├─260 /usr/libexec/certmonger/certmaster-submit ├─261 /usr/libexec/certmonger/certmaster-submit ├─262 /usr/libexec/certmonger/certmaster-submit └─263 /usr/sbin/certmonger -S -p /run/certmonger.pid -n Mar 06 04:46:41 da73fb1b228a systemd[1]: Starting Certificate monitoring and PKI enrollment... Mar 06 04:46:41 da73fb1b228a systemd[1]: Started Certificate monitoring and PKI enrollment. method return time=1583470001.370465 sender=:1.4 -> destination=:1.5 serial=13 reply_serial=2 string "<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd"> <node name="/org/fedorahosted/certmonger"> <interface name="org.freedesktop.DBus.Introspectable"> <method name="Introspect"> <arg name="xml_data" type="s" direction="out"/> </method> </interface> <interface name="org.freedesktop.DBus.Properties"> <method name="Get"> <arg name="interface_name" type="s" direction="in"/> <arg name="property_name" type="s" direction="in"/> <arg name="value" type="v" direction="out"/> </method> <method name="Set"> <arg name="interface_name" type="s" direction="in"/> <arg name="property_name" type="s" direction="in"/> <arg name="value" type="v" direction="in"/> </method> <method name="GetAll"> <arg name="interface_name" type="s" direction="in"/> <arg name="props" type="a{sv}" direction="out"/> </method> <signal name="PropertiesChanged"> <arg name="interface_name" type="s"/> <arg name="changed_properties" type="a{sv}"/> <arg name="invalidated_properties" type="as"/> </signal> </interface> <interface name="org.fedorahosted.certmonger"> <method name="add_known_ca"> <arg name="nickname" type="s" direction="in"/> <arg name="command" type="s" direction="in"/> <arg name="known_names" type="as" direction="in"/> <arg name="status" type="b" direction="out"/> <arg name="name" type="o" direction="out"/> </method> <method name="add_request"> <arg name="template" type="a{sv}" direction="in"/> <arg name="status" type="b" direction="out"/> <arg name="name" type="o" direction="out"/> </method> <method name="find_ca_by_nickname"> <arg name="nickname" type="s" direction="in"/> <arg name="ca" type="o" direction="out"/> </method> <method name="find_request_by_nickname"> <arg name="nickname" type="s" direction="in"/> <arg name="request" type="o" direction="out"/> </method> <method name="get_known_cas"> <arg name="ca_list" type="ao" direction="out"/> </method> <method name="get_requests"> <arg name="requests" type="ao" direction="out"/> </method> <method name="get_supported_key_types"> <arg name="key_type_list" type="as" direction="out"/> </method> <method name="get_supported_key_storage"> <arg name="key_storage_type_list" type="as" direction="out"/> </method> <method name="get_supported_cert_storage"> <arg name="cert_storage_type_list" type="as" direction="out"/> </method> <method name="remove_known_ca"> <arg name="ca" type="o" direction="in"/> <arg name="status" type="b" direction="out"/> </method> <method name="remove_request"> <arg name="request" type="o" direction="in"/> <arg name="status" type="b" direction="out"/> </method> </interface> <node name="requests"/> <node name="cas"/> </node>" [root@user1 ]# docker ps -a CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES da73fb1b228a registry.fedoraproject.org/fedora:30 "/usr/sbin/init" 23 minutes ago Up 23 minutes systemd [root@user1 ]# docker run -e container=oci --name=systemd2 -d --rm registry.fedoraproject.org/fedora:31 /usr/sbin/init d09ab0211d00bb35c84ed6ad3b77df25de6df4fc03d29b508f040e9414110507 [root@user1 ]# docker ps -a CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES d09ab0211d00 registry.fedoraproject.org/fedora:31 "/usr/sbin/init" 4 seconds ago Up 3 seconds systemd2 da73fb1b228a registry.fedoraproject.org/fedora:30 "/usr/sbin/init" 23 minutes ago Up 23 minutes systemd F31 container [root@user1 ]# docker exec systemd2 bash -c 'systemctl restart certmonger ; systemctl status certmonger ; dbus-send --system --type=method_call --print-reply --dest=org.fedorahosted.certmonger /org/fedorahosted/certmonger org.freedesktop.DBus.Introspectable.Introspect' ● certmonger.service - Certificate monitoring and PKI enrollment Loaded: loaded (/usr/lib/systemd/system/certmonger.service; disabled; vendor preset: disabled) Active: active (running) since Fri 2020-03-06 04:57:23 UTC; 35ms ago Main PID: 129 (certmonger) CGroup: /system.slice/docker-d09ab0211d00bb35c84ed6ad3b77df25de6df4fc03d29b508f040e9414110507.scope/system.slice/certmonger.service ├─129 /usr/sbin/certmonger -S -p /run/certmonger.pid -n ├─138 /usr/libexec/certmonger/ipa-submit ├─139 /usr/libexec/certmonger/certmaster-submit ├─140 /usr/libexec/certmonger/certmaster-submit ├─141 /usr/libexec/certmonger/certmaster-submit ├─142 /usr/libexec/certmonger/certmaster-submit └─143 [certmaster-subm] Mar 06 04:57:23 d09ab0211d00 systemd[1]: Starting Certificate monitoring and PKI enrollment... Mar 06 04:57:23 d09ab0211d00 systemd[1]: Started Certificate monitoring and PKI enrollment. method return time=1583470644.015827 sender=:1.3 -> destination=:1.4 serial=13 reply_serial=2 string "<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd"> <node name="/org/fedorahosted/certmonger"> <interface name="org.freedesktop.DBus.Introspectable"> <method name="Introspect"> <arg name="xml_data" type="s" direction="out"/> </method> </interface> <interface name="org.freedesktop.DBus.Properties"> <method name="Get"> <arg name="interface_name" type="s" direction="in"/> <arg name="property_name" type="s" direction="in"/> <arg name="value" type="v" direction="out"/> </method> <method name="Set"> <arg name="interface_name" type="s" direction="in"/> <arg name="property_name" type="s" direction="in"/> <arg name="value" type="v" direction="in"/> </method> <method name="GetAll"> <arg name="interface_name" type="s" direction="in"/> <arg name="props" type="a{sv}" direction="out"/> </method> <signal name="PropertiesChanged"> <arg name="interface_name" type="s"/> <arg name="changed_properties" type="a{sv}"/> <arg name="invalidated_properties" type="as"/> </signal> </interface> <interface name="org.fedorahosted.certmonger"> <method name="add_known_ca"> <arg name="nickname" type="s" direction="in"/> <arg name="command" type="s" direction="in"/> <arg name="known_names" type="as" direction="in"/> <arg name="status" type="b" direction="out"/> <arg name="name" type="o" direction="out"/> </method> <method name="add_request"> <arg name="template" type="a{sv}" direction="in"/> <arg name="status" type="b" direction="out"/> <arg name="name" type="o" direction="out"/> </method> <method name="find_ca_by_nickname"> <arg name="nickname" type="s" direction="in"/> <arg name="ca" type="o" direction="out"/> </method> <method name="find_request_by_nickname"> <arg name="nickname" type="s" direction="in"/> <arg name="request" type="o" direction="out"/> </method> <method name="get_known_cas"> <arg name="ca_list" type="ao" direction="out"/> </method> <method name="get_requests"> <arg name="requests" type="ao" direction="out"/> </method> <method name="get_supported_key_types"> <arg name="key_type_list" type="as" direction="out"/> </method> <method name="get_supported_key_storage"> <arg name="key_storage_type_list" type="as" direction="out"/> </method> <method name="get_supported_cert_storage"> <arg name="cert_storage_type_list" type="as" direction="out"/> </method> <method name="remove_known_ca"> <arg name="ca" type="o" direction="in"/> <arg name="status" type="b" direction="out"/> </method> <method name="remove_request"> <arg name="request" type="o" direction="in"/> <arg name="status" type="b" direction="out"/> </method> </interface> <node name="requests"/> <node name="cas"/> </node>" [root@user1 ]# docker exec systemd2 rpm -q certmonger certmonger-0.79.9-1.fc31.x86_64 [root@user1 ]# non-containerized environment dnf module enable idm:DL1 dnf module install idm:DL1/dns echo "DefaultLimitNOFILE=infinity" >> /etc/systemd/system.conf systemctl daemon-reload systemctl restart certmonger ; systemctl status certmonger ; dbus-send --system --type=method_call --print-reply --dest=org.fedorahosted.certmonger /org/fedorahosted/certmonger org.freedesktop.DBus.Introspectable.Introspect ipa-server-install --domain ipa.test --realm IPA.TEST -a Secret123 -p Secret123 -U systemctl restart certmonger ; systemctl status certmonger ; dbus-send --system --type=method_call --print-reply --dest=org.fedorahosted.certmonger /org/fedorahosted/certmonger org.freedesktop.DBus.Introspectable.Introspect [root@ci-vm-10-0-136-225 ~]# echo "DefaultLimitNOFILE=infinity" >> /etc/systemd/system.conf [root@ci-vm-10-0-136-225 ~]# systemctl daemon-reload [root@ci-vm-10-0-136-225 ~]# cat /etc/redhat-release Red Hat Enterprise Linux release 8.2 Beta (Ootpa) [root@ci-vm-10-0-136-225 ~]# rpm -q certmonger ipa-server certmonger-0.79.7-6.el8.x86_64 ipa-server-4.8.4-6.module+el8.2.0+5773+68ace8c5.x86_64 [root@ci-vm-10-0-136-225 ~]# ipa-server-install --domain ipa.test --realm IPA.TEST -a Secret123 -p Secret123 -U The log file for this installation can be found in /var/log/ipaserver-install.log ============================================================================== This program will set up the IPA Server. Version 4.8.4 This includes: * Configure a stand-alone CA (dogtag) for certificate management * Configure the NTP client (chronyd) * Create and configure an instance of Directory Server * Create and configure a Kerberos Key Distribution Center (KDC) * Configure Apache (httpd) * Configure the KDC to enable PKINIT The IPA Master Server will be configured with: Hostname: ci-vm-10-0-136-225.hosted.upshift.rdu2.redhat.com IP address(es): 10.0.136.225 Domain name: ipa.test Realm name: IPA.TEST The CA will be configured with: Subject DN: CN=Certificate Authority,O=IPA.TEST Subject base: O=IPA.TEST Chaining: self-signed Disabled p11-kit-proxy Synchronizing time No SRV records of NTP servers found and no NTP server or pool address was provided. Using default chrony configuration. Attempting to sync time with chronyc. Process chronyc waitsync failed to sync time! Unable to sync time with chrony server, assuming the time is in sync. Please check that 123 UDP port is opened, and any time server is on network. Warning: IPA was unable to sync time with chrony! Time synchronization is required for IPA to work correctly Configuring directory server (dirsrv). Estimated time: 30 seconds [1/44]: creating directory server instance [2/44]: configure autobind for root [3/44]: stopping directory server [4/44]: updating configuration in dse.ldif [5/44]: starting directory server [6/44]: adding default schema [7/44]: enabling memberof plugin [8/44]: enabling winsync plugin [9/44]: configure password logging [10/44]: configuring replication version plugin [11/44]: enabling IPA enrollment plugin [12/44]: configuring uniqueness plugin [13/44]: configuring uuid plugin [14/44]: configuring modrdn plugin [15/44]: configuring DNS plugin [16/44]: enabling entryUSN plugin [17/44]: configuring lockout plugin [18/44]: configuring topology plugin [19/44]: creating indices [20/44]: enabling referential integrity plugin [21/44]: configuring certmap.conf [22/44]: configure new location for managed entries [23/44]: configure dirsrv ccache and keytab [24/44]: enabling SASL mapping fallback [25/44]: restarting directory server [26/44]: adding sasl mappings to the directory [27/44]: adding default layout [28/44]: adding delegation layout [29/44]: creating container for managed entries [30/44]: configuring user private groups [31/44]: configuring netgroups from hostgroups [32/44]: creating default Sudo bind user [33/44]: creating default Auto Member layout [34/44]: adding range check plugin [35/44]: creating default HBAC rule allow_all [36/44]: adding entries for topology management [37/44]: initializing group membership [38/44]: adding master entry [39/44]: initializing domain level [40/44]: configuring Posix uid/gid generation [41/44]: adding replication acis [42/44]: activating sidgen plugin [43/44]: activating extdom plugin [44/44]: configuring directory to start on boot Done configuring directory server (dirsrv). Configuring Kerberos KDC (krb5kdc) [1/10]: adding kerberos container to the directory [2/10]: configuring KDC [3/10]: initialize kerberos container [4/10]: adding default ACIs [5/10]: creating a keytab for the directory [6/10]: creating a keytab for the machine [7/10]: adding the password extension to the directory [8/10]: creating anonymous principal [9/10]: starting the KDC [10/10]: configuring KDC to start on boot Done configuring Kerberos KDC (krb5kdc). Configuring kadmin [1/2]: starting kadmin [2/2]: configuring kadmin to start on boot Done configuring kadmin. Configuring ipa-custodia [1/5]: Making sure custodia container exists [2/5]: Generating ipa-custodia config file [3/5]: Generating ipa-custodia keys [4/5]: starting ipa-custodia [5/5]: configuring ipa-custodia to start on boot Done configuring ipa-custodia. Configuring certificate server (pki-tomcatd). Estimated time: 3 minutes [1/29]: configuring certificate server instance [2/29]: Add ipa-pki-wait-running [3/29]: reindex attributes [4/29]: exporting Dogtag certificate store pin [5/29]: stopping certificate server instance to update CS.cfg [6/29]: backing up CS.cfg [7/29]: disabling nonces [8/29]: set up CRL publishing [9/29]: enable PKIX certificate path discovery and validation [10/29]: starting certificate server instance [11/29]: configure certmonger for renewals [12/29]: requesting RA certificate from CA [13/29]: setting audit signing renewal to 2 years [14/29]: restarting certificate server [15/29]: publishing the CA certificate [16/29]: adding RA agent as a trusted user [17/29]: authorizing RA to modify profiles [18/29]: authorizing RA to manage lightweight CAs [19/29]: Ensure lightweight CAs container exists [20/29]: configure certificate renewals [21/29]: Configure HTTP to proxy connections [22/29]: restarting certificate server [23/29]: updating IPA configuration [24/29]: enabling CA instance [25/29]: migrating certificate profiles to LDAP [26/29]: importing IPA certificate profiles [27/29]: adding default CA ACL [28/29]: adding 'ipa' CA entry [29/29]: configuring certmonger renewal for lightweight CAs Done configuring certificate server (pki-tomcatd). Configuring directory server (dirsrv) [1/3]: configuring TLS for DS instance [2/3]: adding CA certificate entry [3/3]: restarting directory server Done configuring directory server (dirsrv). Configuring ipa-otpd [1/2]: starting ipa-otpd [2/2]: configuring ipa-otpd to start on boot Done configuring ipa-otpd. Configuring the web interface (httpd) [1/21]: stopping httpd [2/21]: backing up ssl.conf [3/21]: disabling nss.conf [4/21]: configuring mod_ssl certificate paths [5/21]: setting mod_ssl protocol list [6/21]: configuring mod_ssl log directory [7/21]: disabling mod_ssl OCSP [8/21]: adding URL rewriting rules [9/21]: configuring httpd Nothing to do for configure_httpd_wsgi_conf [10/21]: setting up httpd keytab [11/21]: configuring Gssproxy [12/21]: setting up ssl [13/21]: configure certmonger for renewals [14/21]: publish CA cert [15/21]: clean up any existing httpd ccaches [16/21]: configuring SELinux for httpd [17/21]: create KDC proxy config [18/21]: enable KDC proxy [19/21]: starting httpd [20/21]: configuring httpd to start on boot [21/21]: enabling oddjobd Done configuring the web interface (httpd). Configuring Kerberos KDC (krb5kdc) [1/1]: installing X509 Certificate for PKINIT Done configuring Kerberos KDC (krb5kdc). Applying LDAP updates Upgrading IPA:. Estimated time: 1 minute 30 seconds [1/10]: stopping directory server [2/10]: saving configuration [3/10]: disabling listeners [4/10]: enabling DS global lock [5/10]: disabling Schema Compat [6/10]: starting directory server [7/10]: upgrading server [8/10]: stopping directory server [9/10]: restoring configuration [10/10]: starting directory server Done. Restarting the KDC Configuring client side components This program will set up IPA client. Version 4.8.4 Using existing certificate '/etc/ipa/ca.crt'. Client hostname: ci-vm-10-0-136-225.hosted.upshift.rdu2.redhat.com Realm: IPA.TEST DNS Domain: ipa.test IPA Server: ci-vm-10-0-136-225.hosted.upshift.rdu2.redhat.com BaseDN: dc=ipa,dc=test Configured sudoers in /etc/authselect/user-nsswitch.conf Configured /etc/sssd/sssd.conf Systemwide CA database updated. Adding SSH public key from /etc/ssh/ssh_host_ecdsa_key.pub Adding SSH public key from /etc/ssh/ssh_host_ed25519_key.pub Adding SSH public key from /etc/ssh/ssh_host_rsa_key.pub Could not update DNS SSHFP records. SSSD enabled Configured /etc/openldap/ldap.conf Configured /etc/ssh/ssh_config Configured /etc/ssh/sshd_config Configuring ipa.test as NIS domain. Client configuration complete. The ipa-client-install command was successful Please add records in this file to your DNS system: /tmp/ipa.system.records.6ih2oifn.db ============================================================================== Setup complete Next steps: 1. You must make sure these network ports are open: TCP Ports: * 80, 443: HTTP/HTTPS * 389, 636: LDAP/LDAPS * 88, 464: kerberos UDP Ports: * 88, 464: kerberos * 123: ntp 2. You can now obtain a kerberos ticket using the command: 'kinit admin' This ticket will allow you to use the IPA tools (e.g., ipa user-add) and the web user interface. Be sure to back up the CA certificates stored in /root/cacert.p12 These files are required to create replicas. The password for these files is the Directory Manager password The ipa-server-install command was successful [root@ci-vm-10-0-136-225 ~]# systemctl restart certmonger ; systemctl status certmonger ; dbus-send --system --type=method_call --print-reply --dest=org.fedorahosted.certmonger /org/fedorahosted/certmonger org.freedesktop.DBus.Introspectable.Introspect ● certmonger.service - Certificate monitoring and PKI enrollment Loaded: loaded (/usr/lib/systemd/system/certmonger.service; enabled; vendor preset: disabled) Active: active (running) since Fri 2020-03-06 00:30:59 EST; 82ms ago Main PID: 11488 (certmonger) Tasks: 3 Memory: 5.1M CGroup: /system.slice/certmonger.service ├─11488 /usr/sbin/certmonger -S -p /var/run/certmonger.pid -n -d2 ├─11508 /usr/libexec/platform-python -I /usr/libexec/certmonger/ipa-server-guard /usr/libexec/certmonger/ipa-submit ├─11509 /usr/libexec/platform-python -I /usr/libexec/certmonger/ipa-server-guard /usr/libexec/certmonger/ipa-submit ├─11510 /usr/libexec/platform-python -I /usr/libexec/certmonger/ipa-server-guard /usr/libexec/certmonger/ipa-submit └─11511 /usr/sbin/certmonger -S -p /var/run/certmonger.pid -n -d2 Mar 06 00:30:58 ci-vm-10-0-136-225.hosted.upshift.rdu2.redhat.com certmonger[11488]: 2020-03-06 00:30:58 [11494] Token is named "NSS Generi…pping. Mar 06 00:30:58 ci-vm-10-0-136-225.hosted.upshift.rdu2.redhat.com certmonger[11488]: 2020-03-06 00:30:58 [11496] Token is named "NSS Generi…pping. Mar 06 00:30:59 ci-vm-10-0-136-225.hosted.upshift.rdu2.redhat.com certmonger[11488]: 2020-03-06 00:30:59 [11498] Token is named "NSS Generi…pping. Mar 06 00:30:59 ci-vm-10-0-136-225.hosted.upshift.rdu2.redhat.com certmonger[11488]: 2020-03-06 00:30:59 [11500] Token is named "NSS Generi…pping. Mar 06 00:30:59 ci-vm-10-0-136-225.hosted.upshift.rdu2.redhat.com certmonger[11488]: 2020-03-06 00:30:59 [11502] Token is named "NSS Generi…pping. Mar 06 00:30:59 ci-vm-10-0-136-225.hosted.upshift.rdu2.redhat.com systemd[1]: Started Certificate monitoring and PKI enrollment. Mar 06 00:30:59 ci-vm-10-0-136-225.hosted.upshift.rdu2.redhat.com certmonger[11488]: 2020-03-06 00:30:59 [11508] Running enrollment/cadata …uard". Mar 06 00:30:59 ci-vm-10-0-136-225.hosted.upshift.rdu2.redhat.com certmonger[11488]: 2020-03-06 00:30:59 [11509] Running enrollment/cadata …uard". Mar 06 00:30:59 ci-vm-10-0-136-225.hosted.upshift.rdu2.redhat.com certmonger[11488]: 2020-03-06 00:30:59 [11510] Running enrollment/cadata …uard". Mar 06 00:30:59 ci-vm-10-0-136-225.hosted.upshift.rdu2.redhat.com certmonger[11488]: 2020-03-06 00:30:59 [11511] Running enrollment/cadata …uard". Hint: Some lines were ellipsized, use -l to show in full. method return time=1583472661.974697 sender=:1.135 -> destination=:1.136 serial=5 reply_serial=2 string "<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd"> <node name="/org/fedorahosted/certmonger"> <interface name="org.freedesktop.DBus.Introspectable"> <method name="Introspect"> <arg name="xml_data" type="s" direction="out"/> </method> </interface> <interface name="org.freedesktop.DBus.Properties"> <method name="Get"> <arg name="interface_name" type="s" direction="in"/> <arg name="property_name" type="s" direction="in"/> <arg name="value" type="v" direction="out"/> </method> <method name="Set"> <arg name="interface_name" type="s" direction="in"/> <arg name="property_name" type="s" direction="in"/> <arg name="value" type="v" direction="in"/> </method> <method name="GetAll"> <arg name="interface_name" type="s" direction="in"/> <arg name="props" type="a{sv}" direction="out"/> </method> <signal name="PropertiesChanged"> <arg name="interface_name" type="s"/> <arg name="changed_properties" type="a{sv}"/> <arg name="invalidated_properties" type="as"/> </signal> </interface> <interface name="org.fedorahosted.certmonger"> <method name="add_known_ca"> <arg name="nickname" type="s" direction="in"/> <arg name="command" type="s" direction="in"/> <arg name="known_names" type="as" direction="in"/> <arg name="status" type="b" direction="out"/> <arg name="name" type="o" direction="out"/> </method> <method name="add_request"> <arg name="template" type="a{sv}" direction="in"/> <arg name="status" type="b" direction="out"/> <arg name="name" type="o" direction="out"/> </method> <method name="find_ca_by_nickname"> <arg name="nickname" type="s" direction="in"/> <arg name="ca" type="o" direction="out"/> </method> <method name="find_request_by_nickname"> <arg name="nickname" type="s" direction="in"/> <arg name="request" type="o" direction="out"/> </method> <method name="get_known_cas"> <arg name="ca_list" type="ao" direction="out"/> </method> <method name="get_requests"> <arg name="requests" type="ao" direction="out"/> </method> <method name="get_supported_key_types"> <arg name="key_type_list" type="as" direction="out"/> </method> <method name="get_supported_key_storage"> <arg name="key_storage_type_list" type="as" direction="out"/> </method> <method name="get_supported_cert_storage"> <arg name="cert_storage_type_list" type="as" direction="out"/> </method> <method name="remove_known_ca"> <arg name="ca" type="o" direction="in"/> <arg name="status" type="b" direction="out"/> </method> <method name="remove_request"> <arg name="request" type="o" direction="in"/> <arg name="status" type="b" direction="out"/> </method> </interface> <node name="requests"/> <node name="cas"/> </node>" [root@ci-vm-10-0-136-225 ~]# [root@ci-vm-10-0-136-225 ~]# strace -e trace=close -p 11488 -o /tmp/strace_certmonger.out -s 256 -f & [1] 12090 [root@ci-vm-10-0-136-225 ~]# strace: Process 11488 attached [root@ci-vm-10-0-136-225 ~]# cat /tmp/strace_certmonger.out 11488 --- SIGTERM {si_signo=SIGTERM, si_code=SI_USER, si_pid=1, si_uid=0} --- 11488 --- SIGCONT {si_signo=SIGCONT, si_code=SI_USER, si_pid=1, si_uid=0} --- 11488 close(11) = 0 11488 close(11) = 0 11488 close(11) = 0 11488 close(11) = 0 11488 close(11) = 0 11488 close(11) = 0 11488 close(11) = 0 11488 close(11) = 0 11488 close(11) = 0 11488 close(11) = 0 11488 close(11) = 0 11488 close(11) = 0 11488 close(11) = 0 11488 close(11) = 0 11488 close(11) = 0 11488 close(11) = 0 11488 close(5) = 0 11488 close(3) = 0 11488 close(8) = 0 11488 +++ exited with 0 +++ Based on above observations marking Bugzilla verified. Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory, and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://access.redhat.com/errata/RHBA-2020:1704 |