Wednesday, August 5, 2020

Start, enable, stop and disable firewalld on Centos


Start firewalld  service run nex commands:

systemctl unmask --now firewalld

systemctl enable firewalld

systemctl start firewalld

Stop firewalld  service run nex commands:

systemctl stop firewalld

sudo systemctl disable firewalld

sudo systemctl mask --now firewalld









References:
https://linuxize.com/post/how-to-stop-and-disable-firewalld-on-centos-7/
https://bobcares.com/blog/failed-to-start-firewalld-service-unit-is-masked/


No comments:

Post a Comment

Building a Minimal Retrieval-Augmented Generation (RAG) System with LangChain, OpenAI, and Pinecone

Large Language Models (LLMs) are powerful, but they come with an important limitation: they only know what was included during training . Th...