如何确定远程计算机上的服务器类型
我有一个 Rails 网站的虚拟托管,我需要确定充当前端的服务器类型。
他们说,Apache 不用作前端服务器,但我需要以某种方式检查它。
这可能吗? 也许一些终端命令?
I have a virtual hosting of my Rails web-site and i need to determine type of server, that acts as front-end.
They say, that Apache is not used as a front-end server, but i need to check it somehow.
Is this possible ?
Maybe some terminal command ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我理解您的问题更正,您正在尝试确定为您的文件提供服务的网络服务器的类型,对吗?如果是这样,请使用 Fiddler(独立的免费软件应用程序)或 FireBug(FireFox 的免费插件)等工具来查看来自服务器的 HTTP 响应。在大多数情况下,您会看到一个名为“Server”的 HTTP 标头,其中包含正在使用的服务器的描述。例如(来自 cnn.com):
...或者另一个例子,来自 brinkster.com:
您可能会也可能不会获得服务器的特定版本等 - 这取决于服务器提供的信息 - 但它这将是一种非常快速、免费的检查方式,并且可能是我采取的第一步。
If I understand your question correction, you are trying to determine the type of web server that is serving your files, correct? If so, use a tool like Fiddler (a stand-alone freeware app) or FireBug (free plug-in for FireFox) to view the HTTP responses coming from the server. In most cases you will see an HTTP header called "Server" that contains a description of the server being used. For example (from cnn.com):
...or for another example, from brinkster.com:
You may or may not get specific versions, etc. of the server--it depends on what information the server provides--but it would be a very quick, free way way to check and would probably be the first step I would take.