开发者

How do you validate an application's configuration?

开发者 https://www.devze.com 2022-12-19 07:13 出处:网络
I want to run a system configuration check on an app machine where the 开发者_如何学运维check reviews required SQL connection, disk permissions, installed apps, and IP:port access (i.e. firewall isn\'

I want to run a system configuration check on an app machine where the 开发者_如何学运维check reviews required SQL connection, disk permissions, installed apps, and IP:port access (i.e. firewall isn't blocking outgoing access). I'm using Windows Server machines and .NET framework if it makes a difference.

Is there a standard way of verifying an application can do all of these things? For instance maybe there's an app where I can specify each of these requirements in a configuration file, run the app, and get back a status.

Thanks! Ian


Nop, there is no standard way, you have to add a console application in after installation steps while creating a deployment package that will do this checks step by step and show messages in console. I think this is the only way to embed custom steps in installation package using .net programming. Please let me know if you find any automation ;)

0

精彩评论

暂无评论...
验证码 换一张
取 消