Lorem ipsum dolor sit amet, consectetur adipiscing elit lobortis arcu enim urna adipiscing praesent velit viverra sit semper lorem eu cursus vel hendrerit elementum morbi curabitur etiam nibh justo, lorem aliquet donec sed sit mi dignissim at ante massa mattis.
Vitae congue eu consequat ac felis placerat vestibulum lectus mauris ultrices cursus sit amet dictum sit amet justo donec enim diam porttitor lacus luctus accumsan tortor posuere praesent tristique magna sit amet purus gravida quis blandit turpis.
At risus viverra adipiscing at in tellus integer feugiat nisl pretium fusce id velit ut tortor sagittis orci a scelerisque purus semper eget at lectus urna duis convallis. porta nibh venenatis cras sed felis eget neque laoreet suspendisse interdum consectetur libero id faucibus nisl donec pretium vulputate sapien nec sagittis aliquam nunc lobortis mattis aliquam faucibus purus in.
Nisi quis eleifend quam adipiscing vitae aliquet bibendum enim facilisis gravida neque. Velit euismod in pellentesque massa placerat volutpat lacus laoreet non curabitur gravida odio aenean sed adipiscing diam donec adipiscing tristique risus. amet est placerat in egestas erat imperdiet sed euismod nisi.
“Nisi quis eleifend quam adipiscing vitae aliquet bibendum enim facilisis gravida neque velit euismod in pellentesque massa placerat”
Eget lorem dolor sed viverra ipsum nunc aliquet bibendum felis donec et odio pellentesque diam volutpat commodo sed egestas aliquam sem fringilla ut morbi tincidunt augue interdum velit euismod eu tincidunt tortor aliquam nulla facilisi aenean sed adipiscing diam donec adipiscing ut lectus arcu bibendum at varius vel pharetra nibh venenatis cras sed felis eget dolor cosnectur drolo.
This blog series will showcase some of the better technologies that we implement for our customers to create a truly scalable, fault-tolerant, easily managed, and well configured infrastructure.
A challenge of any system administration team is to not only ensure that applications are working as expected, but deploying them in a way that consistency is kept and nothing is ever in an 'unexpected state'. Our first post will be about Puppet, a configuration management application that will help once again give sanity and continuity to your vital infrastructure.
Update:Part 2 is now available.Puppet Configuration ManagementAll too often an employee will leave a company and it's up to the new guy to figure out the intricacies of what files & applications are installed on systems and how they intertwine with each other. Puppet is a great way to cultivate a 'development operations' mentally of infrastructure management. That's to say, treating infrastructure as code with the same procedures that application designers use such as revision control, commenting, unified syntax, and other elements which ensure certain practices are met when deploying systems and applications.Start 'Programming' Your InfrastructureFor anyone who ever tried to create shell scripts to automate the deployment of their entire infrastructure, Puppet was made to lessen your struggle. As an administrator we want to ensure that our systems are online and if they aren't, to get them back online as quickly as possible. By utilizing Puppet for configuration management, we can streamline this process by creating 'manifests' of Puppet DSL code which dictate how a system and its unique set of configuration exists.The following simple example of Puppet will ensure that the file 'httpd.conf' is placed on the desired server with root:root ownership, 0644 permissions, and if there are differences from the 'installed' version versus the 'desired' version, the file will be updated as needed. [code]file file { "/etc/httpd/httpd.conf" ensure => present, owner => "root", group => "root", mode => "0644", source => "puppet:///modules/httpd/httpd.conf";}[/code]As a quick anecdote, I previously had a client who was getting unexpected errors with their nginx/haproxy configuration and it was rather unclear why. After tedious troubleshooting, it was found that one server of the twelve was not configured the same as the others. This single file mismatch led to hours of wasted time for us and the customer. Now scale this example across the hundreds or thousands of important files in a large network and it quickly becomes obvious how useful even just the above snippet can be. But of course, that's not all Puppet can do.A Simple HTTP Server ModuleWith just a few declarations we can do the following:
[code]class httpd { package { "httpd": ensure => present; } service { "httpd": ensure => running, enable => true, subscribe => File["/etc/httpd/httpd.conf"], require => Package["httpd"]; } file { "/etc/httpd/httpd.conf": ensure => present, owner => "root", group => "root", mode => "0644", source => "puppet:///modules/httpd/httpd.conf", require => Package["httpd"]; }}[/code]Taking Back Your InfrastructureThis is a very small, simplistic showcase of what Puppet can do for an environment. Beyond just typical file, package, and service management, Puppet can be used to automatically deploy Nagios and Munin monitoring, be used to deploy code (think Capistrano), and manage any conceivable aspect of your infrastructure.Update:Part 2 is now available.
We are infrastructure management experts. Give us a call at 888-877-7118 or click here to request a proposal.