Managing multiple systems in parallel with SaltStack
Managing Users
If you manage several systems but do not use a directory service, you still might want to manage users centrally. Unsurprisingly, Salt offers a module, pw_user
, that lets you add new users, delete user accounts, and modify individual attributes, such as the home directory [14]; you can even rename existing users. Listing 3 shows how you can create a new user with the user
, rather than the pw_user
, keyword. Before deleting a specific user, you could first list the users on all the systems.
Listing 3
Creating a New User
Note that Salt offers a module (ssh
) to manage the SSH service, so when creating users you can combine modules if you need to generate an SSH key for a new user (ssh-keygen -t rsa
) and roll it out to all the existing systems. The module's documentation [15] demonstrates how that works. If you want to do more than just monitor your systems (e.g., collect status information), take a look at the status
module [16]. Running status.all_status
returns all status data (a lot) for the minion specified. To access the hard disk data in a targeted way, use status.diskusage
, and to check the load status, use status.loadavg
.
If Salt does not offer a module for a functionality of interest, you can simply run shell commands on the systems by using the cmdmod
module [17], which takes the form cmd.<function>
. The cmd.run
pair takes a command you pass in between double or single quotes (Figure 5) and returns the output. Make sure you run the functions from this module with cmd
and not with cmdmod
.
More than Modules
In addition to modules, Salt offers a few commands that cover other functionality. The salt-cp
command, for example, copies data from the master to the minions (Listing 4, first line), allowing you to maintain /etc/hosts
, /etc/motd
, or other configuration files centrally. However, this command was only intended as an emergency solution. Generally, you will be able to manipulate existing files in the most targeted way with the file
module or use the management module for configuration files.
Listing 4
Other SaltStack Commands
The salt-run
command interacts with Salt; for example, it can be used to create a list of unreachable minions:
sudo salt-run manage.down
On Salt, every use of a module is dubbed a job, and salt-run
lets you generate a list of the last jobs (Listing 4, second line). If you would like to see the output of a certain Salt job again, specify the job ID (Listing 4, last line). For the individual commands, salt-run
makes use of its own modules, called "runners" [18].
Conclusions
SaltStack offers almost unlimited system management possibilities because of its large number of integrated modules. Even without the use of in-house configuration management, your computers will be very much under your command, regardless of whether you need to manage users, keep your systems up to date, or just get an overview of particular servers.
Even in heterogeneous networks with Windows machines, you can use Salt. Thanks to its built-in software administration, you can install standard programs like Firefox on Windows clients, and other functions from Linux are also available. Salt proves to be a versatile talent: It makes the use of many tools and DIY scripts redundant.
Infos
- SaltStack project: http://SaltStack.com/community/
- ZeroMQ: http://zeromq.org/
- Windows minions: https://docs.SaltStack.com/en/latest/topics/installation/windows.html
- Supported operating systems: https://docs.SaltStack.com/en/latest/topics/tutorials/salt_bootstrap.html#supported-operating-systems
- Opening ports for Salt: https://docs.SaltStack.com/en/latest/topics/tutorials/firewall.html
test
module: https://docs.SaltStack.com/en/latest/ref/modules/all/salt.modules.test.html- Targeting minions: https://docs.SaltStack.com/en/latest/topics/targeting/
- Defining grains: https://docs.SaltStack.com/en/latest/topics/targeting/grains.html
- Built-in Salt modules: https://docs.SaltStack.com/en/develop/ref/modules/all/index.html
- Writing your own modules: https://docs.SaltStack.com/en/latest/ref/modules/
pkg
module: https://docs.SaltStack.com/en/latest/ref/modules/all/salt.modules.pkg.html- Package module for Apt-based systems: https://docs.SaltStack.com/en/latest/ref/modules/all/salt.modules.aptpkg.html#module-salt.modules.aptpkg
file
module: https://docs.SaltStack.com/en/latest/ref/modules/all/salt.modules.file.html- User management with Salt: https://docs.SaltStack.com/en/latest/ref/modules/all/salt.modules.pw_user.html
- SSH commands: https://docs.SaltStack.com/en/latest/ref/modules/all/salt.modules.ssh.html
status
module: https://docs.SaltStack.com/en/latest/ref/modules/all/salt.modules.status.html- Shell commands with Salt: https://docs.SaltStack.com/en/develop/ref/modules/all/salt.modules.cmdmod.html
- Integrated runner modules: https://docs.SaltStack.com/en/latest/ref/runners/all/index.html
« Previous 1 2 3
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you've found an article to be beneficial.
News
-
elementary OS 7.1 Now Available for Download
The team behind elementary OS has released the latest version of its operating system with a focus on personalization, inclusivity, accessibility, and privacy.
-
The GNU Project Celebrates Its 40th Birthday
September 27 marks the 40th anniversary of the GNU Project, and it was celebrated with a hacker meeting in Biel/Bienne, Switzerland.
-
Linux Kernel Reducing Long-Term Support
LTS support for the Linux kernel is about to undergo some serious changes that will have a considerable impact on the future.
-
Fedora 39 Beta Now Available for Testing
For fans and users of Fedora Linux, the first beta of release 39 is now available, which is a minor upgrade but does include GNOME 45.
-
Fedora Linux 40 to Drop X11 for KDE Plasma
When Fedora 40 arrives in 2024, there will be a few big changes coming, especially for the KDE Plasma option.
-
Real-Time Ubuntu Available in AWS Marketplace
Anyone looking for a Linux distribution for real-time processing could do a whole lot worse than Real-Time Ubuntu.
-
KSMBD Finally Reaches a Stable State
For those who've been looking forward to the first release of KSMBD, after two years it's no longer considered experimental.
-
Nitrux 3.0.0 Has Been Released
The latest version of Nitrux brings plenty of innovation and fresh apps to the table.
-
Linux From Scratch 12.0 Now Available
If you're looking to roll your own Linux distribution, the latest version of Linux From Scratch is now available with plenty of updates.
-
Linux Kernel 6.5 Has Been Released
The newest Linux kernel, version 6.5, now includes initial support for two very exciting features.