PDA

View Full Version : Find out what server?


VBilly
11-28-2007, 05:09 PM
If I am running a cluster is it possible to somehow tell what apache node I am connecting to when I access a site?

IWorx-Paul
11-28-2007, 09:12 PM
What I usually do is make a php file with the following contents

<?
echo `hostname`;
?>


and access it in your browser.

Paul

VBilly
11-28-2007, 11:49 PM
I think that will work perfectly...thanks Paul.