How do you apply development practices like version control, testing and continuous integration/deployment to system administration?

Posted by arex1337 on Server Fault See other posts from Server Fault or by arex1337
Published on 2012-05-25T01:40:22Z Indexed on 2012/05/31 22:42 UTC
Read the original article Hit count: 277

Imagine you're going to manage a number of servers with a number of different services that's used by a number of people. Now say you want to reconfigure or replace some software on one of those servers. Obviously you don't want to work on servers that are in production.

If this was a code change, as a developer, I would make the change on my local development machine, test it locally and commit the change to a version control system. The changes could then be deployed in a staging environment, tested further and finally deployed in a production environment. It would also be easy for me to roll back, if necessary.

Generally, or specifically, how do you achieve this in system administration?

(The first thing that comes to mind is to use virtual machines and put virtual machine images in version control, but I'm sure there is a lot of literature and clever solutions I'm not presently aware of.)

© Server Fault or respective owner

Related posts about linux

Related posts about Windows