RemoteAdmin

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
(RemoteAdmin Commands)
(RemoteAdmin Commands)
 
(28 intermediate revisions by 8 users not shown)
Line 1: Line 1:
__NOTOC__ {{Quicklinks}} <br>
+
{{Quicklinks}}
 +
 
 +
== Introduction ==
 +
 
 +
RemoteAdmin is an interface for simulators that allows various operations to be executed from outside the simulator.  '''Operations that relate to the simulator itself (e.g teleport user) are always available.  Those that relate to grid services (user creation and updating) are only available in standalone mode.  In grid mode, one has to use ROBUST level [[UserManipulation]] capabilities instead.'''
  
 
== How to Setup the Remote Admin interface ==
 
== How to Setup the Remote Admin interface ==
Line 12: Line 16:
 
  enabled_methods = all
 
  enabled_methods = all
  
See OpenSim.ini.example in the OpenSim distribution for more details.
+
See OpenSim.ini.example in the OpenSimulator distribution for more details.
  
 
=== Further options ===
 
=== Further options ===
Line 21: Line 25:
 
  port = <port-number>
 
  port = <port-number>
  
== RemoteAdmin Commands ==
+
== RemoteAdmin Commands ==
 
+
<div style="background-color:#FFA0A0; padding:10px; padding-bottom:5px; border: 1px #FF544F solid">
 +
'''Caution ! All commands using parameters for the uuid of a region use "region_id" as parameter. All other parameters eg. region_uuid or regionID will be removed after June 2012'''
 +
</div>
  
 
=== Agent management ===
 
=== Agent management ===
*[[Remoteadmin:admin teleport agent|admin_teleport_agent]]  
+
*[[Remoteadmin:admin teleport agent|admin_teleport_agent]]
 +
*[[Remoteadmin:admin get agents|admin_get_agents]] (post OpenSimulator 0.7.5)
 +
 
 +
=== User account management ===
 +
*[[RemoteAdmin:admin create user|admin_create_user]]
 +
*[[RemoteAdmin:admin create user email|admin_create_user_email]]
 +
*[[RemoteAdmin:admin exists user|admin_exists_user]]
 +
*[[RemoteAdmin:admin update user|admin_update_user]]
 +
*[[RemoteAdmin:admin authenticate user|admin_authenticate_user]] (not in 0.7.6.1)
 +
 
 +
=== Object management ===
  
=== User management ===
+
=== Parcel management ===
*[[Remoteadmin:admin create user|admin_create_user]]
+
*[[Remoteadmin:admin create user email|admin_create_user_email]]
+
*[[Remoteadmin:admin exists user|admin_exists_user]]
+
*[[Remoteadmin:admin update user|admin_update_user]]
+
  
 
=== Region management ===
 
=== Region management ===
*[[Remoteadmin:admin broadcast|admin_broadcast]]  
+
*[[RemoteAdmin:admin broadcast|admin_broadcast]]  
*[[Remoteadmin:admin close region|admin_close_region]]  
+
*[[RemoteAdmin:admin close region|admin_close_region]]  
*[[Remoteadmin:admin create region|admin_create_region]]  
+
*[[RemoteAdmin:admin create region|admin_create_region]]  
*[[Remoteadmin:admin delete region|admin_delete_region]]  
+
*[[RemoteAdmin:admin delete region|admin_delete_region]]  
*[[Remoteadmin:admin modify region|admin_modify_region]]  
+
*[[RemoteAdmin:admin modify region|admin_modify_region]]  
*[[Remoteadmin:admin region query|admin_region_query]]  
+
*[[RemoteAdmin:admin region query|admin_region_query]]  
*[[Remoteadmin:admin restart|admin_restart]]  
+
*[[RemoteAdmin:admin restart|admin_restart]]  
*[[Remoteadmin:admin shutdown|admin_shutdown]]  
+
*[[RemoteAdmin:admin shutdown|admin_shutdown]]  
  
 
=== Region file management ===
 
=== Region file management ===
{{multicol}}
+
* [[RemoteAdmin:admin load heightmap|admin_load_heightmap]]
*[[Remoteadmin:admin load heightmap|admin_load_heightmap]]
+
* [[RemoteAdmin:admin load oar|admin_load_oar]]  
*[[Remoteadmin:admin load oar|admin_load_oar]]  
+
* [[RemoteAdmin:admin load xml|admin_load_xml]]  
*[[Remoteadmin:admin load xml|admin_load_xml]]  
+
* [[RemoteAdmin:admin save heightmap|admin_save_heightmap]]  
*[[Remoteadmin:admin save heightmap|admin_save_heightmap]]  
+
* [[RemoteAdmin:admin save oar|admin_save_oar]]  
*[[Remoteadmin:admin save oar|admin_save_oar]]  
+
* [[RemoteAdmin:admin save xml|admin_save_xml]]
*[[Remoteadmin:admin save xml|admin_save_xml]]  
+
 
+
  
 
=== Region access management ===
 
=== Region access management ===
*[[Remoteadmin:admin acl list|admin_acl_list]]  
+
* [[RemoteAdmin:admin acl list|admin_acl_list]]  
*[[Remoteadmin:admin acl clear|admin_acl_clear]]  
+
* [[RemoteAdmin:admin acl clear|admin_acl_clear]]  
*[[Remoteadmin:admin acl add|admin_acl_add]]  
+
* [[RemoteAdmin:admin acl add|admin_acl_add]]  
*[[Remoteadmin:admin acl remove|admin_acl_remove]]
+
* [[RemoteAdmin:admin acl remove|admin_acl_remove]]
 +
 
 +
=== Estate management ===
 +
* [[RemoteAdmin:admin estate reload|admin_estate_reload]]
  
 
=== Administration ===
 
=== Administration ===
*[[Remoteadmin:admin console command|console_command]]
+
* [[RemoteAdmin:admin console command|admin_console_command]]
 
+
== Example code ==
+
 
+
=== Example in C# .NET  ===
+
 
+
This example needs the Nwc.XmlRpc library, located in your OpenSim bin folder.
+
 
+
<source lang="csharp">
+
public void CreateUser(Uri url, string adminPassword, string firstName, string lastName, string password, string email, int regionX, int regionY)
+
{
+
var address = Dns.GetHostEntry(url.DnsSafeHost).AddressList[0];
+
var ht = new Hashtable();
+
ht["password"] = adminPassword;
+
ht["user_firstname"] = firstName;
+
ht["user_lastname"] = lastName;
+
ht["user_password"] = password;
+
ht["user_email"] = email;
+
ht["start_region_x"] = regionX;
+
ht["start_region_y"] = regionY;
+
var parameters = new List<Hashtable> { ht };
+
var rpc = new XmlRpcRequest("admin_create_user", parameters);
+
rpc.Invoke(url.ToString());
+
}
+
 
+
[Test]
+
public void NativeUserRegistrationTest()
+
{
+
CreateUser(new Uri("http://yourgrid.com:9000/"), "secret", "Test2", "user2", "apassword", "email@address.com", 0, 0);
+
}
+
</source>
+
 
+
=== Another Example in C# .NET  ===
+
 
+
<source lang="csharp">
+
//Author Ottalese complements of yoursimspot.com
+
//This example needs the CookComputing.XmlRpc library, this can be downloaded from http://www.xml-rpc.net/.
+
//Recently updated code I originally posted, this can be secured using SSL.
+
 
+
using System;
+
using System.Data;
+
using System.Configuration;
+
using System.Collections;
+
using System.Web;
+
using System.Web.Security;
+
using System.Web.UI;
+
using System.Web.UI.WebControls;
+
using System.Web.UI.WebControls.WebParts;
+
using System.Web.UI.HtmlControls;
+
using CookComputing.XmlRpc;
+
 
+
[XmlRpcUrl("http://ServerIpAddress:9000/")]
+
public interface RemoteOpensim&nbsp;: IXmlRpcProxy
+
{
+
//Create new user
+
[XmlRpcMethod("admin_create_user")]
+
XmlRpcStruct admin_create_user(XmlRpcStruct Parameters);
+
}
+
 
+
public partial class _Default&nbsp;: System.Web.UI.Page
+
{
+
protected void Page_Load(object sender, EventArgs e)
+
{
+
}
+
protected void SubmitButton_Click(object sender, EventArgs e)
+
{
+
XmlRpcStruct NewUser = new XmlRpcStruct(); //Will contain return results.
+
XmlRpcStruct Parameters = new XmlRpcStruct();//Parameters passed.
+
try
+
{
+
RemoteOpensim Admin = XmlRpcProxyGen.Create&lt;RemoteOpensim&gt;();
+
 
+
Parameters.Add("password", "RemotePassword"); //Password you set in the .ini file for the RemoteAdmin
+
Parameters.Add("user_firstname", SomeStringWithFirstName);
+
Parameters.Add("user_lastname", SomeStringWithLastName);
+
Parameters.Add("user_password", SomePassword);
+
Parameters.Add("start_region_x", 0);
+
Parameters.Add("start_region_y", 0);
+
NewUser = Admin.admin_create_user(Parameters);
+
 
+
foreach (DictionaryEntry ReturnResults in NewUser)
+
{
+
Response.Write(ReturnResults.Key.ToString() + "&nbsp;: " + d.Value.ToString());//Returns if the user was added or not
+
}
+
}
+
catch (Exception ex)
+
{
+
Response.Write(ex.Message);
+
}
+
}
+
}
+
</source>
+
 
+
=== Example in Python  ===
+
 
+
<source lang="python">
+
# Author : DrScofield
+
# Source : http://xyzzyxyzzy.net/2008/01/23/using-pythons-xmlrpclib-with-opensim/
+
# License : BSD License
+
+
#!/usr/bin/python
+
import xmlrpclib
+
+
# XML-RPC URL (http_listener_port)
+
simulatorUrl = "http://127.0.0.1:9000"
+
+
# instantiate server object
+
simulator = xmlrpclib.Server(simulatorUrl)
+
+
# invoke admin_alert: requires password and message
+
simulator.admin_broadcast({'password': 'secret', 'message': 'the answer is 42'})
+
</source>
+
 
+
=== Example XML-RPC string to "create user"  ===
+
 
+
(used with&nbsp;first C#.NET method above)
+
 
+
POST admin_create_user HTTP/1.0<br>Host: http://10.0.0.12:16384/<br>Content-type: text/xml<br>Content-Length: 993
+
 
+
&lt;?xml version="1.0"?&gt;<br>&lt;methodCall&gt;<br>&nbsp;&nbsp;&nbsp; &lt;methodName&gt;admin_create_user&lt;/methodName&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;params&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp;&nbsp; &lt;param&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;value&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;struct&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&lt;member&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&lt;name&gt;password&lt;/name&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;value&gt;&lt;string&gt;password&lt;/string&gt;&lt;/value&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&lt;/member&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&lt;member&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;name&gt;user_firstname&lt;/name&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;value&gt;&lt;string&gt;male&lt;/string&gt;&lt;/value&gt; <br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&lt;/member&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;member&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;name&gt;user_lastname&lt;/name&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;value&gt;&lt;string&gt;9999&lt;/string&gt;&lt;/value&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/member&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;member&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;name&gt;user_password&lt;/name&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;value&gt;&lt;string&gt;password&lt;/string&gt;&lt;/value&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/member&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&lt;member&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&lt;name&gt;user_email&lt;/name&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &lt;value&gt;&lt;string&gt;none@email.com&lt;/string&gt;&lt;/value&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &lt;/member&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &lt;member&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;name&gt;start_region_x&lt;/name&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;value&gt;&lt;int&gt;128&lt;/int&gt;&lt;/value&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/member&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;member&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;name&gt;start_region_y&lt;/name&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;value&gt;&lt;int&gt;128&lt;/int&gt;&lt;/value&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&lt;/member&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;/struct&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&lt;/value&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/param&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;/params&gt;<br>&nbsp;&nbsp;&nbsp; &lt;/methodCall&gt;
+
 
+
=== RemoteAdmin executable for Windows  ===
+
 
+
The RemoteAdmin executable for Windows is a command line tool based on the RemoteAdmin PHP Class.
+
 
+
Downloads and documentation on the [http://lab.newworldgrid.com/index.php/RemoteAdmin_Executable RemoteAdmin Executable webpage]
+
 
+
=== Example in PHP  ===
+
 
+
This example needs the RemoteAdmin PHP Class file available [http://code.google.com/p/opensimtools/wiki/RemoteAdminPHPClass here]. <source lang="php">
+
<?php
+
 
+
// Author : Olish Newman
+
// Source : http://code.google.com/p/opensimtools/wiki/RemoteAdminPHPClass
+
// Licence : BSD License
+
 
+
// Including the RemoteAdmin PHP class. It can be downloaded from the link above.
+
include('RemoteAdmin.php');
+
 
+
// Instantiate the class with parameters identical to the Python example above
+
$myRemoteAdmin = new RemoteAdmin('127.0.0.1', 9000, 'secret');
+
 
+
// Invoke admin_broadcast
+
$parameters = array('message' => 'the answer is 42');
+
$myRemoteAdmin->SendCommand('admin_broadcast', $parameters);
+
 
+
// Invoke admin_shutdown (example for use without parameters)
+
$myRemoteAdmin->SendCommand('admin_shutdown');
+
 
+
// Invoke admin_create_user (multiple parameters)
+
$parameters = array('user_firstname' => 'Ruth', 'user_lastname' => 'OpenSim', 'user_password' => 'MyPassword', 'start_region_x' => '1000', 'start_region_y' => '1000');
+
$myRemoteAdmin->SendCommand('admin_create_user', $parameters);
+
?>
+
</source>
+
 
+
Note: This script does not appear to work for create user because it tries to pass the start region x and y as a string when the RemoteAdmin needs a string. The class needs to be edited to pass it as a number or edit the remoteadmin source to convert the string to a unsigned int.
+
 
+
Another example in PHP5, using CURL. <source lang="php">
+
//This is the slightly modified RPC-class of the BSD-licensed WiXTD webportal
+
<?php
+
class RemotePC {
+
 
+
function __construct() {
+
$this->serveruri = "http://myhost";
+
$this->serverport ="9000";
+
$this->password ="foobar";
+
}
+
+
function call($command,$parameters) {
+
$parameters['password'] = $this->password;
+
$request = xmlrpc_encode_request($command, $parameters);
+
$ch = curl_init();
+
curl_setopt( $ch, CURLOPT_URL, $this->serveruri);
+
curl_setopt( $ch, CURLOPT_PORT, $this->serverport]);
+
curl_setopt($ch, CURLOPT_POST, 1);
+
curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, 1);
+
curl_setopt ( $ch, CURLOPT_POSTFIELDS, $request);
+
curl_setopt ( $ch, CURLOPT_TIMEOUT, 5);
+
$result = curl_exec($ch);
+
curl_close($ch);
+
return xmlrpc_decode($result);
+
}
+
}
+
?>
+
</source>
+
 
+
<br>
+
 
+
=== Example in Perl  ===
+
  
Because the OpenSim internal web server just accepts HTTP/1.0 requests, it's worth to give a perl example. It's not a daily thing to do HTTP/1.0 within the LWP environment. You can get the '''[[Users:Thomax:perl-xmlrpc|Perl example here]]'''.
+
=== Misc (Undocumented) ===
 +
* [[RemoteAdmin:admin dialog|admin_dialog]]
 +
* [[RemoteAdmin:admin reset land|admin_reset_land]]
 +
* [[RemoteAdmin:admin refresh search|admin_refresh_search]]
 +
* [[RemoteAdmin:admin refresh map|admin_refresh_map]]
 +
* [[RemoteAdmin:admin get opensim version|admin_get_opensim_version]]
 +
* [[RemoteAdmin:admin get agent count|admin_get_agent_count]]
  
== Credits  ==
+
== Subcategories ==
  
Thanks to DrScofield for the Python Script Sources&nbsp;: http://xyzzyxyzzy.net/2008/01/23/using-pythons-xmlrpclib-with-opensim/
+
* [[RemoteAdmin:RemoteAdmin Examples|RemoteAdmin Examples]]
 +
* [[RemoteAdmin:RemoteAdmin Proposals|RemoteAdmin Proposals]]
 +
* [[RemoteAdmin:RemoteAdmin Standards|RemoteAdmin Standards]]
 +
* [[RemoteAdmin:RemoteAdmin Implement new command|RemoteAdmin How to implement new commands]]
 +
* [[RemoteAdmin:RemoteAdmin Class|RemoteAdmin Class]]
  
 
[[Category:Development]]
 
[[Category:Development]]
 +
[[Category:RemoteAdmin]]

Latest revision as of 13:24, 14 April 2017

Contents

[edit] Introduction

RemoteAdmin is an interface for simulators that allows various operations to be executed from outside the simulator. Operations that relate to the simulator itself (e.g teleport user) are always available. Those that relate to grid services (user creation and updating) are only available in standalone mode. In grid mode, one has to use ROBUST level UserManipulation capabilities instead.

[edit] How to Setup the Remote Admin interface

First you should enable the remote admin interface to do so just add the following lines to your OpenSim.ini file Port should be set to a nonzero value to have the remote admin on a different port

As of r/16843 you can limit access to remote admin to specific IP addresses by using the optional access_ip_addresses. You can list all IP's allowed to access remote admin by seperating each IP by a comma. If access_ip_addresses isn't set, then all IP addresses can access RemoteAdmin.

[RemoteAdmin]
enabled = true
access_password = secret
enabled_methods = all

See OpenSim.ini.example in the OpenSimulator distribution for more details.

[edit] Further options

You can also specify a different port for the XMLRPCAdmin command listener from the default simulator HTTP port

[RemoteAdmin]
port = <port-number>

[edit] RemoteAdmin Commands

Caution ! All commands using parameters for the uuid of a region use "region_id" as parameter. All other parameters eg. region_uuid or regionID will be removed after June 2012

[edit] Agent management

[edit] User account management

[edit] Object management

[edit] Parcel management

[edit] Region management

[edit] Region file management

[edit] Region access management

[edit] Estate management

[edit] Administration

[edit] Misc (Undocumented)

[edit] Subcategories

Personal tools
General
About This Wiki