Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Chef Cookbook - Third Edition

You're reading from  Chef Cookbook - Third Edition

Product type Book
Published in Feb 2017
Publisher Packt
ISBN-13 9781786465351
Pages 268 pages
Edition 3rd Edition
Languages
Author (1):
Matthias Marschall Matthias Marschall
Profile icon Matthias Marschall

Table of Contents (15) Chapters

Chef Cookbook - Third Edition
Credits
About the Author
About the Reviewer
www.PacktPub.com
Customer Feedback
Preface
1. Chef Infrastructure 2. Evaluating and Troubleshooting Cookbooks and Chef Runs 3. Chef Language and Style 4. Writing Better Cookbooks 5. Working with Files and Packages 6. Users and Applications 7. Servers and Cloud Infrastructure Index

Managing NTP


Your nodes should always have synchronized clocks, if for no other reason than that the Chef server requires clients' clocks to be synchronized with it. This is required because the authentication of clients is based on a time window in order to prevent man-in-the-middle attacks.

NTP is there to synchronize your nodes' clocks with its upstream peers. It usually uses a set of trusted upstream peers so that it gets a reliable timing signal.

It's a good idea to put the installation of NTP into a role which you assign to every node. Bugs caused by clocks which are out of sync are not nice to track down. It is better to avoid them in the first place by using NTP on every node.

Getting ready

  1. Create a Berksfile in your Chef repository including the ntp cookbook:

    mma@laptop:~/chef-repo $ subl Berksfile
    cookbook 'ntp', '~> 3.2.0'
    
  2. Install the ntp cookbook:

    mma@laptop:~/chef-repo $ berks install
    Resolving cookbook dependencies...
    Using ntp (3.2.0)
    
  3. Upload the ntp cookbook to the Chef server...

lock icon The rest of the chapter is locked
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 $15.99/month. Cancel anytime}