Sunday, October 9, 2016

best practices - What sysadmin things should every programmer know?




As a programmer, we tend to take sysadmins for granted. The few times I've been without a good sysadmin have really made me appreciate what you guys do. When we're venturing into an environment without a sysadmin, what words of wisdom can you offer us?


Answer



I'd start with:




  1. Always have a backup system of some kind. Even better if it has a history.

  2. Consider single points of failure and how to deal with them should they fail.

  3. Depending on the amount of computers involved, looking into some way to make and create a standard image across computers will make everyone's life easier - no "it works on mine" because they have such and such a program not normally installed.

  4. Document everything, if only because you will forget how you set something up.


  5. Keep abreast of security updates.


No comments:

Post a Comment

linux - How to SSH to ec2 instance in VPC private subnet via NAT server

I have created a VPC in aws with a public subnet and a private subnet. The private subnet does not have direct access to external network. S...