Getting Started with Salt Stack-the Other Configuration Management System Built with Python
Minion Configuration
For this tutorial, I cover issuing salt-master and salt-minion commands on the same machine. If you are configuring multiple machines, choose one to be the master, and all the others will be minions. The choice of master or minion is yours, and there are many reasons to configure one machine as the master. I explain how to set one as a master and the other(s) as minions next.
Salt's configuration files are located in /etc/salt. By default, these files are named minion and master. If you've installed the salt-master and salt-minion on the same machine, you will see two respective files, master and minion.
You first need to tell your minion how to locate and communicate with your master. Even though you are running both on the same server, you still need to tell your minion where your master is.
-
Using your favorite text editor, open the minion file.
-
Uncomment the line
# master: saltby removing the#and replacingsaltwith the your master's IP address. It now should look like this:master: your.ip.address.here. (If you're doing this locally on the same machine, you can add 127.0.0.1.) -
Give your minion a nickname. Locate the line
#id:, and again remove the#and add a nameid: 1st-Salt-Minion. (This name can be anything you want.) -
Restart your minion using
sudo salt-minion -din order for it to read the new configuration settings. The-dflag dæmonizes the process and starts the minion in the background, so you still can access your command-line to issue more commands.
Accept Your Minion's Keys
Now that your minion knows where your master is, it's time for them to authenticate one another. Salt uses public key encryption to secure the communication between master and minions. You need to notify the master and minion that they can trust each other by accepting the minion's keys on the master.
Accept your minion's keys using the salt-key command. Salt automatically
takes care of generating these keys for you, so you simply need to accept the
minion(s) you want.
-
Type
salt-key -Lto get a list of all pending, accepted and rejected keys. -
You should see an unaccepted key for
1st-Salt-Minion(or whatever ID you chose for your minion). -
Accept this key using
sudo salt-key -a 1st-Salt-Minion.
Test Communications
Now that you have a salt-master and a salt-minion, and the minion and master
trust one another, you can check the connection by issuing a test ping command
from the master. This will return "True" if your master can communicate with your
minion.
Type salt '*' test.ping, and it should return:
>{1st-Salt-Minion: True}
Note that the wild-card '*' targets every minion, and as
you have only one,
this is basically moot (it's just faster than typing
salt
'1st-Salt-Minion' test.ping).
If you receive a "True" response back from your minion, you have installed Salt Stack successfully and configured your master and minion to communicate properly.
If you don't, you may want to restart your master and minion without the
-d
(dæmon) flag, so you can observe the output. For more information, see the
Salt documentation at http://docs.saltstack.org/en/latest/topics/configuration.html.
The Salt command syntax involves the command, the target(s) and the action. So,
for this example, '*' targets everything (it's a wild
card), and test.ping is the
action.
You can now execute any available command on any connected and authenticated minion. Important note: these commands must be available on the targeted minion in order to execute them. For instance, a command like:
sudo salt '*' cmd.run "service apache2 restart"
would work only for a distribution that calls the Apache Web server apache2 and that has the Apache Web server installed. For others, you would need to issue the command:
sudo salt '*' cmd.run "service httpd restart"
Some other examples might include querying the amount of time your servers have been running. You can do that with:
sudo salt '*' cmd.run "uptime"
If you had, for example, Apache Bench installed on a master but not on a minion, the command:
sudo salt '*' cmd.run "ab -n 10 -c 2 http://www.google.com:80/index.html"
would fail if you tried to execute it on a minion, since Apache Bench isn't installed on the minion.
The possibilities here are practically limitless. You can reboot all of your machines at once, update system software and check your machines' health from one terminal instead of logging in to each machine and issuing these commands independently.
You also can target specific groups, based upon criteria that you select. See
the -G flag documentation at http://saltstack.org for more options.
Very rarely should you ever need to log in to a minion again. All configuration and execution can be handled remotely, quickly and simultaneously.
Now that you've installed Salt and can execute remote commands, why stop there? The second part of Salt's power comes from the configuration management tools included with Salt.
Ben Hosmer is a DEVOP with RadiantBlue Technologies where he develops and maintains Drupal sites and administers various servers. He is an open-source advocate and helps spread the use of Linux and other open-source software within the US government.
Today’s modular x86 servers are compute-centric, designed as a least common denominator to support a wide range of IT workloads. Those generic, virtualized IT workloads have much different resource optimization requirements than hyperscale and cloud applications. They have resulted in a “one size fits all” enterprise IT architecture that is not optimized for a specific set of IT workloads, and especially not emerging hyperscale workloads, such as web applications, big data, and object storage. In this report, you will learn how shifting the focus from traditional compute-centric IT architectures to an innovative disaggregated fabric-based architecture can optimize and scale your data center.
Sponsored by AMD
Built-in forensics, incident response, and security with Red Hat Enterprise Linux 6
Every security policy provides guidance and requirements for ensuring adequate protection of information and data, as well as high-level technical and administrative security requirements for a system in a given environment. Traditionally, providing security for a system focuses on the confidentiality of the information on it. However, protecting the data integrity and system and data availability is just as important. For example, when processing United States intelligence information, there are three attributes that require protection: confidentiality, integrity, and availability.
Learn more about catching the bad guy in this free white paper.
Sponsored by DLT Solutions
Free Webinar: Linux Backup and Recovery
Most companies incorporate backup procedures for critical data, which can be restored quickly if a loss occurs. However, fewer companies are prepared for catastrophic system failures, in which they lose all data, the entire operating system, applications, settings, patches and more, reducing their system(s) to “bare metal.” After all, before data can be restored to a system, there must be a system to restore it to.
In this one hour webinar, learn how to enhance your existing backup strategies for better disaster recovery preparedness using Storix System Backup Administrator (SBAdmin), a highly flexible bare-metal recovery solution for UNIX and Linux systems.
| Making Linux and Android Get Along (It's Not as Hard as It Sounds) | May 16, 2013 |
| Drupal Is a Framework: Why Everyone Needs to Understand This | May 15, 2013 |
| Home, My Backup Data Center | May 13, 2013 |
| Non-Linux FOSS: Seashore | May 10, 2013 |
| Trying to Tame the Tablet | May 08, 2013 |
| Dart: a New Web Programming Experience | May 07, 2013 |
- New Products
- Making Linux and Android Get Along (It's Not as Hard as It Sounds)
- A Topic for Discussion - Open Source Feature-Richness?
- Drupal Is a Framework: Why Everyone Needs to Understand This
- Home, My Backup Data Center
- Readers' Choice Awards
- What's the tweeting protocol?
- New Products
- RSS Feeds
- Dart: a New Web Programming Experience
- Reply to comment | Linux Journal
8 hours 8 min ago - Reply to comment | Linux Journal
10 hours 41 min ago - Reply to comment | Linux Journal
11 hours 58 min ago - great post
12 hours 33 min ago - Google Docs
12 hours 55 min ago - Reply to comment | Linux Journal
17 hours 44 min ago - Reply to comment | Linux Journal
18 hours 31 min ago - Web Hosting IQ
20 hours 4 min ago - Thanks for taking the time to
21 hours 41 min ago - Linux is good
23 hours 39 min ago



Comments
Phyton or Java?
Phyton is a good language for development.And Java? Is better? cheats
Reply to comment | Linux Journal
Itѕ liκе уou rеаd my mіnd!
You aрpеar to know ѕo much about this, lіke you ωrоte the boοk
in іt oг somethіng. I thіnκ that you
сould do ωіth a few pics to ԁrіve
the message hοmе a littlе bit, but οthег than that, thiѕ is еxcеllеnt blog.
A greаt reаd. I'll certainly be back.
How would you deploy multiple
How would you deploy multiple folders, say your application files. can we use something http://www.hairwigs.de/ like RSYNC ? I know Puppet has such a module. Salt also has a CI module in Github. Would anyone know more ?
Perücken
Perücken
Ok, but...
Phyton is a good language for development. cheats
I have read this marvelous
I have read this marvelous post. Thanks for sharing information about it. Thank you for giving me another point of view on this topic. Now I can easily complete my article
Archeage Gold | ffxiv gil
It sounds perfect for my
It sounds perfect for my goals,
Thanks & Regards
James
Reply to comment | Linux Journal
Do you mind if I quote a few of your posts as long as I provide credit
and sources back to your webpage? My website is in the exact same niche as yours and my
visitors would certainly benefit from a lot of the information you present
here. Please let me know if this alright with you.
Cheers!
Very useful
I am a beginner and this was a great intro to Salt.
I found the article via this article on deploying Django with Salt:
http://www.barrymorrison.com/2013/Mar/11/deploying-django-with-salt-stack/
Watching a Project Folder
How would you deploy multiple folders, say your application files. can we use something like RSYNC ? I know Puppet has such a module. Salt also has a CI module in Github. Would anyone know more ?
Critical typo
Hi. I fairly certain that I found a typo in the top.sls example. The second line should end with a colon.
base:
'*':
- servers
Thanks,
Joshua
Founder, Wrale Ltd
agreed.
Yup Joshua,
I see that too... but it seems a bit blatant..
A minor error in your first page...
I don't believe you meant to say: "Note: I use the terms Salt and Salt interchangeably throughout this article"
A dive into Salt Stack
http://opencredo.com/blog/a-dive-into-salt-stack
Doubts related to remote server configuration using Salt
Hello,
You've mentioned that system package manager should be available with the package that we are trying to install. Is there any way to perform tasks like source compiling as we do while accessing the machine remotely via SSH. And thank you very much for the fantastic Blog.
Thanks,
Karthik