So let me get this straight...
-
Let's say I'm crazy enough to install Windows Server 2016 to host an app I want to keep going in the cloud 24/7. There's no way to stop this thing from magically rebooting willy nilly outside of setting the normal business hours or whatnot... but say when not in that timeframe, Windows will up and just restart la la la without a care to the wind for a *server* app? Did I miss the memo where MS started smoking crack?
Jeremy Falcon
I think if you dig deep enough into some of the 'hidden' settings (taskscheduler/updateorchestrator) you might find a way to stop forced restarts. Sorry, it's Saturday and that's all I can offer. I am experimenting with the equivalent settings in WinTen and am waiting for evidence that the hack/setting actually works. Good luck! :)
"Go forth into the source" - Neal Morse
-
Let's say I'm crazy enough to install Windows Server 2016 to host an app I want to keep going in the cloud 24/7. There's no way to stop this thing from magically rebooting willy nilly outside of setting the normal business hours or whatnot... but say when not in that timeframe, Windows will up and just restart la la la without a care to the wind for a *server* app? Did I miss the memo where MS started smoking crack?
Jeremy Falcon
You just need to set a group policy. Or two actually. If you still feel unsafe you can of course also disable the Windows Update Service.
Wrong is evil and must be defeated. - Jeff Ello
-
Jeremy Falcon wrote:
Did I miss the memo where MS started smoking crack?
Have you been on a secret mission to Mars? Mickeysoft has slowly been losing its grasp on reality over the last ten years.
The language is JavaScript. that of Mordor, which I will not utter here
This is Javascript. If you put big wheels and a racing stripe on a golf cart, it's still a fucking golf cart.
"I don't know, extraterrestrial?" "You mean like from space?" "No, from Canada." If software development were a circus, we would all be the clowns.Well, I mean I knew it was doing that for the desktop app on Win10, but the server... Anyway, Google says I can just disable the Windows Update service to stop it, so we'll see.
Jeremy Falcon
-
I think if you dig deep enough into some of the 'hidden' settings (taskscheduler/updateorchestrator) you might find a way to stop forced restarts. Sorry, it's Saturday and that's all I can offer. I am experimenting with the equivalent settings in WinTen and am waiting for evidence that the hack/setting actually works. Good luck! :)
"Go forth into the source" - Neal Morse
Anyway, Google says I can just disable the Windows Update service to stop it, so we'll see. *crosses fingers*
Jeremy Falcon
-
You just need to set a group policy. Or two actually. If you still feel unsafe you can of course also disable the Windows Update Service.
Wrong is evil and must be defeated. - Jeff Ello
Good. I mean I'm all for updates, but randomly restarting a server is bad juju.
Jeremy Falcon
-
Good. I mean I'm all for updates, but randomly restarting a server is bad juju.
Jeremy Falcon
I'm not having a server to check at the moment, but a quick googling found it for me: Prevent Windows Server 2012 from forcing a reboot after updates - Server Fault[^]
Chaoix wrote:
Press Windows Key+R to open the run prompt. Type "gpedit.msc" and press enter. In the "Local Group Policy Editor", navigate to Computer Configuration > Administrative Templates > Windows Components > Windows Update. Enable the "Configure Automatic Updates" policy and set it to "2". Enable the "No auto-restart with logged on users for scheduled automatic updates installations" policy.
Wrong is evil and must be defeated. - Jeff Ello
-
Let's say I'm crazy enough to install Windows Server 2016 to host an app I want to keep going in the cloud 24/7. There's no way to stop this thing from magically rebooting willy nilly outside of setting the normal business hours or whatnot... but say when not in that timeframe, Windows will up and just restart la la la without a care to the wind for a *server* app? Did I miss the memo where MS started smoking crack?
Jeremy Falcon
This is why I am really thinking, Linux is a better way to go than Windows OS, for server apps. At this point, what with the .NET Core, Mono C#, etc., I shouldn't have any problems running a C# web server on Linux. I'll have to give that a try actually. [edit]And as for the database, I really like PostgreSQL, and I think there's Linq2SQL support for that (I don't use EF!), though not sure. And since I'm not tied in with IIS on any of my web apps, I don't have to worry about that! [/edit] Marc
Imperative to Functional Programming Succinctly Contributors Wanted for Higher Order Programming Project! Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny
-
I'm not having a server to check at the moment, but a quick googling found it for me: Prevent Windows Server 2012 from forcing a reboot after updates - Server Fault[^]
Chaoix wrote:
Press Windows Key+R to open the run prompt. Type "gpedit.msc" and press enter. In the "Local Group Policy Editor", navigate to Computer Configuration > Administrative Templates > Windows Components > Windows Update. Enable the "Configure Automatic Updates" policy and set it to "2". Enable the "No auto-restart with logged on users for scheduled automatic updates installations" policy.
Wrong is evil and must be defeated. - Jeff Ello
I just disabled the service. Living on the edge. :)
Jeremy Falcon
-
This is why I am really thinking, Linux is a better way to go than Windows OS, for server apps. At this point, what with the .NET Core, Mono C#, etc., I shouldn't have any problems running a C# web server on Linux. I'll have to give that a try actually. [edit]And as for the database, I really like PostgreSQL, and I think there's Linq2SQL support for that (I don't use EF!), though not sure. And since I'm not tied in with IIS on any of my web apps, I don't have to worry about that! [/edit] Marc
Imperative to Functional Programming Succinctly Contributors Wanted for Higher Order Programming Project! Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny
I've always been a *Nix fan since I was a teenager, it's just this app requires Windows or else I wouldn't bother with it.
Jeremy Falcon
-
I just disabled the service. Living on the edge. :)
Jeremy Falcon
Just don't forget to run it every now and then, there sadly is a reason they made such a stupid move. X|
Wrong is evil and must be defeated. - Jeff Ello
-
This is why I am really thinking, Linux is a better way to go than Windows OS, for server apps. At this point, what with the .NET Core, Mono C#, etc., I shouldn't have any problems running a C# web server on Linux. I'll have to give that a try actually. [edit]And as for the database, I really like PostgreSQL, and I think there's Linq2SQL support for that (I don't use EF!), though not sure. And since I'm not tied in with IIS on any of my web apps, I don't have to worry about that! [/edit] Marc
Imperative to Functional Programming Succinctly Contributors Wanted for Higher Order Programming Project! Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny
I know 'Topshelf' and I'm pretty sure 'Quartz.Net' also runs on Mono, so Linux is a serious option for services in C# :)
-
This is why I am really thinking, Linux is a better way to go than Windows OS, for server apps. At this point, what with the .NET Core, Mono C#, etc., I shouldn't have any problems running a C# web server on Linux. I'll have to give that a try actually. [edit]And as for the database, I really like PostgreSQL, and I think there's Linq2SQL support for that (I don't use EF!), though not sure. And since I'm not tied in with IIS on any of my web apps, I don't have to worry about that! [/edit] Marc
Imperative to Functional Programming Succinctly Contributors Wanted for Higher Order Programming Project! Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny
Npgsql[^] PostgreSQL data provider for .NET. It's awesome.
What do you get when you cross a joke with a rhetorical question? The metaphorical solid rear-end expulsions have impacted the metaphorical motorized bladed rotating air movement mechanism. Do questions with multiple question marks annoy you???
-
Let's say I'm crazy enough to install Windows Server 2016 to host an app I want to keep going in the cloud 24/7. There's no way to stop this thing from magically rebooting willy nilly outside of setting the normal business hours or whatnot... but say when not in that timeframe, Windows will up and just restart la la la without a care to the wind for a *server* app? Did I miss the memo where MS started smoking crack?
Jeremy Falcon
Jeremy Falcon wrote:
Windows will up and just restart la la la without a care to the wind for a *server* app?
Hi, An unpatched server on a network increases the risk of attack on all of the other networked devices. It's time for everyone to realize that many computing devices are part of a global interconnected network. Over the last decade we have relied on human server administrators to be responsible for keeping up-to-date and applying security patches. That is not working very well. It seems perfectly reasonable to give the server administrator several days or perhaps weeks to perform a manual reboot. if that does not happen... force the update. I would suggest having a look at Manage updates using Windows Update for Business[^] Most feature updates may be deferred for up to 180 days. Some security updates can be deferred for up to 30 days depending on severity. Unfortunately there are also remotely exploitable security issues that simply cannot be deferred. One last thing... You heard it here first. Within the next decade Linux distro organizations will be highly encouraged to have a similar forced-update mechanism. This will probably be negotiated and network-enforced via future trade agreements such as TPP and NAFTA and/or other future agreements. Best Wishes, -David Delaune
-
Just don't forget to run it every now and then, there sadly is a reason they made such a stupid move. X|
Wrong is evil and must be defeated. - Jeff Ello
Aye
Jeremy Falcon
-
Jeremy Falcon wrote:
Windows will up and just restart la la la without a care to the wind for a *server* app?
Hi, An unpatched server on a network increases the risk of attack on all of the other networked devices. It's time for everyone to realize that many computing devices are part of a global interconnected network. Over the last decade we have relied on human server administrators to be responsible for keeping up-to-date and applying security patches. That is not working very well. It seems perfectly reasonable to give the server administrator several days or perhaps weeks to perform a manual reboot. if that does not happen... force the update. I would suggest having a look at Manage updates using Windows Update for Business[^] Most feature updates may be deferred for up to 180 days. Some security updates can be deferred for up to 30 days depending on severity. Unfortunately there are also remotely exploitable security issues that simply cannot be deferred. One last thing... You heard it here first. Within the next decade Linux distro organizations will be highly encouraged to have a similar forced-update mechanism. This will probably be negotiated and network-enforced via future trade agreements such as TPP and NAFTA and/or other future agreements. Best Wishes, -David Delaune
Dude. I don't think you realize I'm a very senior level professional that's fullly aware of all of this. Also, if you really think deferrring will stop it from rebooting when it feels like it, maybe you should take a look again. When it does decide to eventually install the update it will reboot whether you like it or not. And without consent. And Unix and most likely Linux will never adopt this. Everyone knows a magical reboot you have no real control over is foolish. Everybody. Except MS it seems.
Jeremy Falcon
-
Jeremy Falcon wrote:
Windows will up and just restart la la la without a care to the wind for a *server* app?
Hi, An unpatched server on a network increases the risk of attack on all of the other networked devices. It's time for everyone to realize that many computing devices are part of a global interconnected network. Over the last decade we have relied on human server administrators to be responsible for keeping up-to-date and applying security patches. That is not working very well. It seems perfectly reasonable to give the server administrator several days or perhaps weeks to perform a manual reboot. if that does not happen... force the update. I would suggest having a look at Manage updates using Windows Update for Business[^] Most feature updates may be deferred for up to 180 days. Some security updates can be deferred for up to 30 days depending on severity. Unfortunately there are also remotely exploitable security issues that simply cannot be deferred. One last thing... You heard it here first. Within the next decade Linux distro organizations will be highly encouraged to have a similar forced-update mechanism. This will probably be negotiated and network-enforced via future trade agreements such as TPP and NAFTA and/or other future agreements. Best Wishes, -David Delaune
CoreOs already does that, they have it as one of the reasons to choose them[^].
Wrong is evil and must be defeated. - Jeff Ello
-
Let's say I'm crazy enough to install Windows Server 2016 to host an app I want to keep going in the cloud 24/7. There's no way to stop this thing from magically rebooting willy nilly outside of setting the normal business hours or whatnot... but say when not in that timeframe, Windows will up and just restart la la la without a care to the wind for a *server* app? Did I miss the memo where MS started smoking crack?
Jeremy Falcon
Jeremy Falcon wrote:
There's no way to stop this thing from magically rebooting
I think that I can say with pretty much absolute certainty that the adjective I would have used is not "magically".
I wanna be a eunuchs developer! Pass me a bread knife!
-
Jeremy Falcon wrote:
There's no way to stop this thing from magically rebooting
I think that I can say with pretty much absolute certainty that the adjective I would have used is not "magically".
I wanna be a eunuchs developer! Pass me a bread knife!
Touché. :)
Jeremy Falcon
-
CoreOs already does that, they have it as one of the reasons to choose them[^].
Wrong is evil and must be defeated. - Jeff Ello
Keep in mind I'm new to containers but even with that I could see it... almost. Not so much in a server environment though. And I'm sure some people will use a container on a server but I digress.
Jeremy Falcon
-
Dude. I don't think you realize I'm a very senior level professional that's fullly aware of all of this. Also, if you really think deferrring will stop it from rebooting when it feels like it, maybe you should take a look again. When it does decide to eventually install the update it will reboot whether you like it or not. And without consent. And Unix and most likely Linux will never adopt this. Everyone knows a magical reboot you have no real control over is foolish. Everybody. Except MS it seems.
Jeremy Falcon
Jeremy Falcon wrote:
Also, if you really think deferrring will stop it from rebooting when it feels like it, maybe you should take a look again. When it does decide to eventually install the update it will reboot whether you like it or not. And without consent.
I thought that's exactly what Randor said:
Randor wrote:
It seems perfectly reasonable to give the server administrator several days or perhaps weeks to perform a manual reboot. if that does not happen... force the update
Jeremy Falcon wrote:
And Unix and most likely Linux will never adopt this
One could argue that the exact opposite of this might happen (both opinions being predictions anyway), but only time will tell what would happen.