buy tb500

Archive for the ‘Ansible’ Category

start service using ansible

Tuesday, May 10th, 2022

ansible groupname -i hosts -u user -m service -a “name=httpd state=started” -b

-a stand for arguments, -m stand for module, -b stand for become a root

How to install httpd using ansible

Tuesday, May 10th, 2022

ansible groupname -i hosts -u user -m yum -a “name=httpd state=latest” -b

note: -a stand for arguments, -b stand for become a root, because need to be a root in order to install service