What's the best way to deploy an executable process on a web server?

后端 未结 11 1300
一生所求
一生所求 2021-02-02 03:35

The original question:

The title of this question might be a bit clumsily phrased, but here\'s the situation:

I have a .NET web project deployed on my server.

11条回答
  •  难免孤独
    2021-02-02 03:53

    To me, your problem sounds a lot like the deployment problem SharePoint solves through their Timer service running in each WFE, stsadm enqueuing admin tasks, that service dequeuing and running them etc.

    What I would do is to

    • write a service running in each WFE
    • write a small custom "stsadm" tool so you can enqueue tasks, specify when they need to run, etc.

    Another approach: what about using the plain vanilla Windows Task Scheduler? Look here, you can easily enqueue tasks remotely for ex.

提交回复
热议问题