SaltStack Commands
- Linux Helpline (Easy Guide)
- 3,723 views
- Ingavar J.

SaltStack is a open source configuration management used remote execution tool. With the use of remote execution system administrators can execute the programs and command from the master system named as salt to the agent system named as minions.Sample salt-master commands are given below,
Salt-master commands
listing minions keys:
#salt-key --list allAccepted Keys:
Denied Keys:
Unaccepted Keys:
Rejected Keysaccept all minions keys :
#salt-key -Adelete all minions key:
#salt-key -Daccept one of minions:
#salt-key -a <minionID>ping all minions:
#salt '*' test.pingrun grains on all minions for retrieve network interface:
#salt "*" grains.get 'hwaddr_interfaces'run grains on all minions for retrieve CPU model:
#salt "*" grains.get 'cpu_model'run OS command on minion:
#salt "*" cmd.run 'reboot'listing modules:
#salt-call sys.list_modules --out=jsonlisting states:
#salt-call sys.list_state_moduleslisting modules force output format:
#salt-call sys.list_modules --out=jsonsynchronising modules of the minions with the master:
#salt-call saltutil.sync_modules