在 ColdFusion 中,有没有办法确定代码在哪个服务器上运行?

In ColdFusion, is there a way to determine what server the code is running on?(在 ColdFusion 中,有没有办法确定代码在哪个服务器上运行?)
本文介绍了在 ColdFusion 中,有没有办法确定代码在哪个服务器上运行?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

ColdFusion 代码中是否有任何方法可以确定代码在哪个服务器上执行?我有几个负载平衡的 ColdFusion 服务器.当我捕捉到异常时,我希望能够知道代码在哪个服务器上运行,因此我可以将该信息包含在日志记录/报告代码中.

Is there any way in ColdFusion code to determine on what server the code is executing? I have few load-balanced ColdFusion servers. I want to be able to know on which server the code is running when I catch an exception, so I can include that information in the logging / reporting code.

如果重要的话,服务器是 Windows 2003/IIS.我也很想知道如何在 Linux/Apache 中做到这一点.:-)

The servers are Windows 2003/IIS, if that matters. I'd love to know how to do it in Linux/Apache too. :-)

推荐答案

这可能会帮助您进一步...

This may help you further...

<cfscript>
machineName = createObject("java", "java.net.InetAddress").localhost.getCanonicalHostName();
hostaddress = createObject("java", "java.net.InetAddress").localhost.getHostAddress();
</cfscript>
<cfdump var="#machineName#"><br />
<cfdump var="#hostaddress#"><br />

这篇关于在 ColdFusion 中,有没有办法确定代码在哪个服务器上运行?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

java8 stream sum multiple(java8流总和倍数)
How to output the decimal in average?(如何平均输出小数?)
Java sum 2 negative numbers(Java求和2个负数)
How to get sum of char values produced in a loop?(如何获得循环中产生的 char 值的总和?)
How can I sum the values associated with a reoccurring key in a hashmap(如何将与哈希图中重复出现的键关联的值相加)
subset sum find all subsets that add up to a number(子集和找到所有加起来为一个数字的子集)