检查 IIS 中托管的 Web 应用程序是否被任何用户访问
我有一个用 ASP.net 开发的 Web 应用程序,托管在我们网络 (Box1) 的 IIS 上。我们已将此应用程序迁移到不同的环境(Box2)。我们已修改所有应用程序以调用应用程序 Box2 而不是 Box1。
由于此应用程序是从多个应用程序调用的,因此我想检查 Box1 中的应用程序是否被任何应用程序调用。
有没有简单的方法可以在不更改任何代码的情况下监控这一点。
感谢您的帮助
I have a web application developed in ASP.net hosted on IIS in our network(Box1). We have migrated this application to a different environment(Box2). We have modified all the applications to call application Box2 instead of Box1.
As this application is being called from various applications, I want to check if the application in Box1 is called by any application.
Is there any easy way to monitor this without doing any code changes.
Appreciate your help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查 Box1 上的 IIS 日志以查看发生了哪些访问...
和/或在 IIS 中设置从 Box1 到 Box2 的永久重定向。
编辑 - 另一个选项:
在 Box1 上放置一个静态 html 页面,而不是应用程序,解释它已移动到新的 URL (Box2) 并包含该 URL...
如果您想这样做困难的方法是,您可以关闭 Box1 上的应用程序,然后查看谁出现错误,指出他们无法访问该应用程序...
check the IIS logs on Box1 to see what accesses occur...
and/or setup a permanent redirect in IIS from Box1 to Box2.
EDIT - another option:
Put a static html page on Box1 instead of the app explaining that it has been moved to a new URL (Box2) and include that URL...
IF you want to do it the hard way you can just shutdown the app on Box1 and see whoever comes up with an error saysing that they can't access the app...