Linux执行防火墙命令报错或者失效
在执行firewall-cmd相关命令时报错,例如执行firewall-cmd --state 查看状态时无法查看。此时应该重新安装dbus包,执行yum install dbus 或者yum update dbus。再次执行firewall-cmd --state发现配置命令已经可以正常使用。然重新启动dbus,执行systemctl restart dbus。在系统重启以及升级firewall
在执行firewall-cmd相关命令时报错,例如执行firewall-cmd --state 查看状态时无法查看
[root@192 /]# firewall-cmd --state
ERROR:dbus.proxies:Introspect error on :1.3:/org/fedoraproject/FirewallD1: dbus.exceptions.DBusException: org.fedoraproject.FirewallD1.Exception: 'FirewallD' object has no attribute 'path'
Error: 'FirewallD' object has no attribute 'fw'
[root@192 /]# firewall-cmd --state
ERROR:dbus.proxies:Introspect error on :1.3:/org/fedoraproject/FirewallD1: dbus.exceptions.DBusException: org.fedoraproject.FirewallD1.Exception: 'FirewallD' object has no attribute 'path'
Error: 'FirewallD' object has no attribute 'fw'
在系统重启以及升级firewalld版本后发现问题依旧存在。
根据报错,怀疑dbus包存在问题
此时应该重新安装dbus包,执行yum install dbus 或者yum update dbus
然重新启动dbus,执行systemctl restart dbus
再次执行firewall-cmd --state发现配置命令已经可以正常使用
[root@192 /]# systemctl stop firewalld
[root@192 /]# systemctl start firewalld
更多推荐
所有评论(0)