Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Learning Puppet for Windows Server

You're reading from   Learning Puppet for Windows Server Organize your Windows environment using Puppet tools to unload administrative burdens in a short time!

Arrow left icon
Product type Paperback
Published in Aug 2015
Publisher Packt
ISBN-13 9781785281877
Length 234 pages
Edition 1st Edition
Tools
Arrow right icon
Author (1):
Arrow left icon
Fuat Ulugay Fuat Ulugay
Author Profile Icon Fuat Ulugay
Fuat Ulugay
Arrow right icon
View More author details
Toc

Table of Contents (10) Chapters Close

Preface 1. Installing Puppet Server and Foreman FREE CHAPTER 2. Installing Puppet Agents 3. Your First Modules 4. Puppet Forge Modules for Windows 5. Puppet Facts, Functions, and Templates 6. Using Puppet for Windows Security 7. Reporting and Monitoring 8. Installing Software and Updates Index

Installing Foreman

After installing Puppet Master, our next step is to install the Foreman web user interface that will be used to manage and report. Foreman is an open source project that can be used with Puppet or Chef. With Foreman and Puppet, you can manage your servers for configuration management, orchestration, and monitoring. For installation of Foreman, we will first add the relevant repositories, and after that install it.

Add repository details, as follows:

$ sudo -i
# echo "deb http://deb.theforeman.org/ trusty stable" > /etc/apt/sources.list.d/foreman.list
# echo "deb http://deb.theforeman.org/ plugins stable" >> /etc/apt/sources.list.d/foreman.list

You can also use sudonano to add the details to the relevant files. In the preceding commands, echo outputs the text to the screen or a file. > overwrites the file, if it exists; if it does not exist, the file will be created. >> adds content to the end of the file without overwriting it.

We need to add the key for the repository, as we are manually adding the source details using this command:

# wget -q http://deb.theforeman.org/pubkey.gpg -O- | apt-key add -

Now we have successfully added the repository details; we can continue with the repository updates, as follows:

# apt-get update

We need Apache as our web server. So, we install apache2 and foreman-installer as shown in the following:

# apt-get install -y foreman-installer

The final step is to run the foreman-installer. It will take some time to complete. For my server, it took more than five minutes.

# foreman-installer
Installing Foreman

Do not forget to write down the user and password details to connect your server. In the next section, we will see the basics of the user interface.

You have been reading a chapter from
Learning Puppet for Windows Server
Published in: Aug 2015
Publisher: Packt
ISBN-13: 9781785281877
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image