blob: 396ba563c61327ee6a8fb7688430281bbd9e5b83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
How to get this working on Linux/Apache:
Create a new directory /var/www/monitor and copy all files htdocs/* files there.
Include these lines in /etc/apache2/httpdocs
---
<Directory /var/www/monitor>
Options +ExecCGI
</Directory>
AddHandler cgi-script .cgi
---
Restart Apache: sudo /etc/init.d/apache2 restart
Check that the perl XML-RPC modules is available ("sudo apt-get install librcp-xml-perl" on Ubuntu)
Edit /var/www/monitor/monitor.cgi to update the IP addresses for the Grid server (TODO: improve this)
Start OpenSim in grid mode, use a browser to open http://localhost/monitor/monitor.cgi
|