Problem:
Try to start firewalld service via the following command
1 |
systemctl start firewalld |
but get the following error after few seconds no response:
1 2 3 |
firewalld.service: Start operation timed out. Terminating. firewalld.service: Failed with result 'timeout'. systemd: Failed to start firewalld - dynamic firewall daemon. |
Solution:
Execute the following command to restart firewalld service
1 |
systemctl stop firewalld;pkill -f firewalld;systemctl start firewalld |