Skip to content
This repository has been archived by the owner on Feb 16, 2020. It is now read-only.

Latest commit

 

History

History
10 lines (6 loc) · 333 Bytes

useful-commands.md

File metadata and controls

10 lines (6 loc) · 333 Bytes

Ansible Snippets

Some useful commands for open hcs environments

Start/Stop hybris on all nodes

Use state=started to launch the service, or state=stopped to stop it. The --become flag tells ansible to use sudo to perform the action

ansible -i <inventory> hybris -m service -a "name=hybris state=stopped" --become