• Complain

Lorin Hochstein - Ansible: Up and Running

Here you can read online Lorin Hochstein - Ansible: Up and Running full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. year: 2015, publisher: OReilly Media, Inc., genre: Computer. Description of the work, (preface) as well as reviews are available. Best literature library LitArk.com created for fans of good reading and offers a wide selection of genres:

Romance novel Science fiction Adventure Detective Science History Home and family Prose Art Politics Computer Non-fiction Religion Business Children Humor

Choose a favorite category and find really read worthwhile books. Enjoy immersion in the world of imagination, feel the emotions of the characters or learn something new for yourself, make an fascinating discovery.

Lorin Hochstein Ansible: Up and Running
  • Book:
    Ansible: Up and Running
  • Author:
  • Publisher:
    OReilly Media, Inc.
  • Genre:
  • Year:
    2015
  • Rating:
    4 / 5
  • Favourites:
    Add to favourites
  • Your mark:
    • 80
    • 1
    • 2
    • 3
    • 4
    • 5

Ansible: Up and Running: summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "Ansible: Up and Running" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

Among the many configuration management tools available, Ansible has some distinct advantagesits minimal in nature, you dont need to install anything on your nodes, and it has an easy learning curve. This practical guide shows you how to be productive with this tool quickly, whether youre a developer deploying code to production or a system administrator looking for a better automation solution.

Lorin Hochstein: author's other books


Who wrote Ansible: Up and Running? Find out the surname, the name of the author of the book and a list of all author's works by series.

Ansible: Up and Running — read online for free the complete book (whole text) full work

Below is the text of the book, divided by pages. System saving the place of the last page read, allows you to conveniently read the book "Ansible: Up and Running" online for free, without having to search again every time where you left off. Put a bookmark, and you can go to the page where you finished reading at any time.

Light

Font size:

Reset

Interval:

Bookmark:

Make
Ansible: Up and Running

by Lorin Hochstein

Copyright 2015 Lorin Hochstein. All rights reserved.

Printed in the United States of America.

Published by OReilly Media, Inc. , 1005 Gravenstein Highway North, Sebastopol, CA 95472.

OReilly books may be purchased for educational, business, or sales promotional use. Online editions are also available for most titles (http://safaribooksonline.com). For more information, contact our corporate/institutional sales department: 800-998-9938 or corporate@oreilly.com .

  • Editor: Brian Anderson
  • Production Editor: Melanie Yarbrough
  • Copyeditor: Carla Thornton
  • Proofreader: Marta Justak
  • Indexer: WordCo Indexing Services
  • Interior Designer: David Futato
  • Cover Designer: Ellie Volkhausen
  • Illustrator: Rebecca Demarest
  • May 2015: First Edition
Revision History for the First Edition
  • 2015-04-28: First Release

See http://oreilly.com/catalog/errata.csp?isbn=9781491915325 for release details.

The OReilly logo is a registered trademark of OReilly Media, Inc. Ansible: Up and Running, the cover image, and related trade dress are trademarks of OReilly Media, Inc.

While the publisher and the author have used good faith efforts to ensure that the information and instructions contained in this work are accurate, the publisher and the author disclaim all responsibility for errors or omissions, including without limitation responsibility for damages resulting from the use of or reliance on this work. Use of the information and instructions contained in this work is at your own risk. If any code samples or other technology this work contains or describes is subject to open source licenses or the intellectual property rights of others, it is your responsibility to ensure that your use thereof complies with such licenses and/or rights.

978-1-491-91532-5

[LSI]

Foreword

Ansible started as a simple side project in February of 2012, and its rapidgrowth has been a pleasant surprise. It is now the work product of about athousand people (and the ideas of many more than that), and it is widely deployed inalmost every country. Its not unusual in a computer meet-up to find a handful(at least) of people who use it.

Ansible is perhaps exciting because it really isnt. Ansible doesnt reallyattempt to break new ground, but rather to distill a lot of existing ideas that othersmart folks had already figured out and make them a bit more accessible.

Ansible sought a middle ground between somewhat computer-sciencey ITautomation approaches (themselves a reaction to tedious large commercialsuites) and hack-and-slash scripting that just got things done. Also, how canwe replace a configuration management system, a deployment project, anorchestration project, and our library of arbitrary but important shell scriptswith a single system? That was the idea.

Could we remove major architectural components from the IT automation stack?Eliminating management demons and relying instead on OpenSSH meant thesystem could start managing a computer fleet immediately, without having to setup anything on the managed machines. Further, the system was apt to be morereliable and secure.

I had noticed that in trying to automate systems previously, things that shouldbe simple were often hard, and that writing automation content could oftencreate a time-sucking force that kept me from things I wanted to spend more timedoing. And I didnt want the system to take months to become an expertwith, either.

In particular, I personally enjoy writing new software, but piloting automationsystems, a bit less. In short, I wanted to make automation quicker and leaveme more time for the things I cared about. Ansible was not something you weremeant to use all day long, but to get in, get out, and get back to doing thethings you cared about.

I hope you will like Ansible for many of the same reasons.

Although I spent a large amount of time making sure Ansibles docs werecomprehensive, theres always a strong advantage to seeing material presented ina variety of ways, and often in seeing actual practice applied alongside thereference material.

In Ansible: Up And Running, Lorin presents Ansible in a very idiomatic way, inexactly the right order in which you might wish to explore it. Lorin has beenaround Ansible since almost the very beginning, and Im very grateful for hiscontributions and input.

Im also immensely thankful for everyone who has been a part of this project todate, and everyone who will be in the future.

Enjoy the book, and enjoy managing your computer fleet! And remember to installcowsay!

Michael DeHaan

Creator of Ansible (software), former CTO of Ansible, Inc. (company)

April 2015

Preface
Why I Wrote This Book

When I was writing my first web application, using Django, the popular Python-based framework, I remember the sense ofaccomplishment when the app was finally workingon my desktop. I would run django manage.py runserver, point mybrowser to http://localhost:8000, and there was my web application in all itsglory.

Then I discovered there were all of thesethings I had to do, just to getthe darned app to run on the Linux server. In addition to installing Django andmy app onto the server, I had to install Apache and the mod_python module sothat Apache could run Django apps. Then I had to figure out the right Apacheconfiguration file incantation so that it would run my application and serve upthe static assets properly.

None of it was hard, it was just a pain to get all of those details right. Ididnt want to muck about with configuration files, I just wanted my app to run.Once I got it working, everything was fineuntil, several monthslater, I had to do it again, on a different server, at which point I had tostart the process all over again.

Eventually, I discovered that this process was Doing It Wrong. The right way to do thissort of thing has a name, and that name is configuration management. The greatthing about using configuration management is that its a way to captureknowledge that always stays up-to-date. No more hunting for the right doc pageor searching through your old notes.

Recently, a colleague at work was interested in trying out Ansible for deployinga new project, and he asked me for a reference on how to apply the Ansibleconcepts in practice, beyond what was available in the official docs. I didntknow what else to recommend, so I decided to write something to fill the gapand here itis. Alas, this book comes too late for him, but I hope youll find it useful.

Who Should Read This Book

This book is for anyone who needs to deal with Linux or Unix-likeservers. If youve ever used the terms systems administration, operations, deployment, configuration management, or (sigh) DevOps, then you should find some value here.

Although I have managed my share of Linux servers, my background is insoftware engineering. This means that the examples in this book tendtoward the deployment end of the spectrum, although Im in agreement with Andrew Clay Shafer () that the distinction between deployment and configuration is unresolved.

Navigating This Book

Im not a big fan of book outlines: Chapter 1 covers so and so, Chapter 2 covers such and such, that sort of thing. I strongly suspect that nobody ever reads them (I never do), and the table of contents is much easier to scan.

This book is written to be read start to finish, with later chapters building on the earlier ones. Its written largely in a tutorial style, so you should be able to follow along on your own machine. Most of the examples are focused on web applications.

Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «Ansible: Up and Running»

Look at similar books to Ansible: Up and Running. We have selected literature similar in name and meaning in the hope of providing readers with more options to find new, interesting, not yet read works.


Reviews about «Ansible: Up and Running»

Discussion, reviews of the book Ansible: Up and Running and just readers' own opinions. Leave your comments, write what you think about the work, its meaning or the main characters. Specify what exactly you liked and what you didn't like, and why you think so.