FTP 服务器的在线状态报告?
我想要制作一份有关 FTP 服务器何时打开和关闭的状态报告。 HTML 是我更喜欢使用的语言。我以前从未使用过 HTML,由于我的 ftp 服务器何时关闭和何时开启的大量请求,我需要它。
I want to make a status report of when my FTP server is on and when its off. HTML is the language which I prefer to use. I have never used HTML before, and I need it due to a large request of when my ftp server is off and when its on.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果我这样做,我会编写一个 ASPNET 页面(或 PHP 等)来简单地连接 FTP 服务器并对其进行身份验证。如果成功,则服务器在线。然后 ASPX 逻辑将生成一个指示结果的 HTML 页面。
在简单的情况下,您通过每个页面请求连接到 FTP 服务器。不过,它应该缓存结果,并且仅每分钟、五分钟或更长的时间间隔检查一次,无论发出状态请求的频率如何。
If I were doing this, I would write an ASPNET page (or PHP, or etc) that simply connects and authenticates to the FTP server. If this succeeds, the server is online. The ASPX logic would then generate an HTML page indicating the results.
In the simple case you connect to the FTP server with each request for the page. It should cache the result though, and only check every minute, or five minutes, or some longer interval, regardless of how often a request for the status is made.
我可以建议您不要自己编写,而是在服务器上安装服务器监控工具吗?与自己编写相比,这可能是一个更容易的选择。
Google 搜索
HTML 是一种静态标记语言。您可能需要使用服务器端脚本(例如 PHP 或 Perl)来查询 FTP 服务器状态。
May i suggest instead of writing your own, you just install server monitoring tools on your server instead? It might be an easier choice that writing your own.
Google search
HTML is a static markup language. You might want need to use a server-side script like PHP or Perl to query for the FTP server status.