ERROR:dbus.proxies:Introspect error during postinstall
Symptoms
In some cases SELinux is known to prevent automatic firewall configuration, resulting in errors like the following during postinstall:
cloud-init: ERROR:dbus.proxies:Introspect error on :1.23:/org/fedoraproject/FirewallD1: dbus.exceptions.DBusException: org.freedesktop.DBus.Error.NoReply: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.
Solutions
If you encounter such errors you will need to manually open firewall ports for HTTP, HTTPS, and SSH by running:
# systemctl stop firewalld
# firewall-cmd --permanent --add-service=https
# firewall-cmd --permanent --add-service=http
# firewall-cmd --permanent --add-service=ssh
# firewall-cmd --permanent --zone=public --add-port=8443/tcp
# firewall-cmd --permanent --zone=public --add-port=3389/tcp
# firewall-cmd --permanent --zone=public --add-port=2222/tcp
# systemctl start firewalld
Updated about 2 years ago