I am in the process of configuring a production web server running Debian 5.0. How do you keep an apt-based distro up to date. Is there any best practice or magical ways of doing it? Logging in via ssh and running apt-get upgrade manually seems unrational.

EDIT: After some discussion in the comments I am now deciding to upgrade the server manually but would like to know how to keep up to date with what packages to apply.

link|improve this question

doing this automaticly could break your production server without any visible reason. upgrades on server machines should be handled by admins with some knowledge – Nuno Furtado Apr 29 '09 at 11:20
Ok. I see your point. Another question arises though. How do you as an admin keep up to date with when patches for security vulnerabilities are available? – Felix Andersen Apr 29 '09 at 11:24
Well, im not a professional sys administrator so i would edit your question to reflect your comment, maybe tag it differently. You would probably need to be alert to your distributions update site, and update only the packages you feel wont possibly break your production system. Running some trials on your Quality or Integration systems would probably be best. this is my personal and non savvy opinion =D – Nuno Furtado Apr 29 '09 at 11:29
feedback

1 Answer

up vote 3 down vote accepted

Automatically updating your server could be problematic; the installation could fail, the new package could have slightly different behavior (debian is pretty good at avoiding this), or a condition might have changed which only becomes evident when package installation forces a service restart, etc. So I would advise against unattended package installs.

That being said, you could look into cron-apt, which you can configure to do just that, or to download the packages in advance, and alert you about the available updates so that all you have to do is log in and install them.

Additionally/alternatively, you could subscribe to debian-security-announce, which sends out notices of new security updates.

link|improve this answer
would just like to add that any upgrade to a production server should have been tested under simmilar conditions on other ambient type machines – Nuno Furtado Apr 29 '09 at 11:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.