From 97c18caa766e2dd72b152b78827ef554f2054f8c Mon Sep 17 00:00:00 2001
From: Melanie
Date: Tue, 22 Sep 2009 17:04:34 +0100
Subject: Thank you, Intari, for a patch that implements the missing pieces of
Http-in and makes the host name for URL generation configurable. Applied with
changes: llGetSimulatorHostname was not changed, because the change breaks
existing behavior and carries a data exposure risk. That value needs to be
configurable, the proposed fixed change is not acceptable.
---
bin/OpenSim.ini.example | 4 ++++
1 file changed, 4 insertions(+)
(limited to 'bin')
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example
index d38c511..e34378c 100644
--- a/bin/OpenSim.ini.example
+++ b/bin/OpenSim.ini.example
@@ -305,6 +305,10 @@
http_listener_sslport = 9001 ; Use this port for SSL connections
http_listener_ssl_cert = "" ; Currently unused, but will be used for OSHttpServer
+ ; Hostname to use in llRequestURL/llRequestSecureURL
+ ; if not defined - default machine name is being used
+ ; (on Windows this mean NETBIOS name - useably only inside local network)
+ ; ExternalHostNameForLSL=127.0.0.1
; Uncomment below to enable llRemoteData/remote channels
; remoteDataPort = 20800
--
cgit v1.1
From 160277db6999f82e641287115bcaa46f829e8625 Mon Sep 17 00:00:00 2001
From: Melanie
Date: Wed, 23 Sep 2009 15:24:27 +0100
Subject: Removing the overlooked .exe.config files for the deleted servers
---
bin/OpenSim.Grid.AssetServer.exe.config | 35 -----------------------------
bin/OpenSim.Grid.InventoryServer.exe.config | 35 -----------------------------
2 files changed, 70 deletions(-)
delete mode 100644 bin/OpenSim.Grid.AssetServer.exe.config
delete mode 100644 bin/OpenSim.Grid.InventoryServer.exe.config
(limited to 'bin')
diff --git a/bin/OpenSim.Grid.AssetServer.exe.config b/bin/OpenSim.Grid.AssetServer.exe.config
deleted file mode 100644
index 58404fd..0000000
--- a/bin/OpenSim.Grid.AssetServer.exe.config
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/bin/OpenSim.Grid.InventoryServer.exe.config b/bin/OpenSim.Grid.InventoryServer.exe.config
deleted file mode 100644
index b1315c1..0000000
--- a/bin/OpenSim.Grid.InventoryServer.exe.config
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
cgit v1.1
From 35deff7ec4df6156abccdbeed83b14a6083e28f9 Mon Sep 17 00:00:00 2001
From: Diva Canto
Date: Wed, 23 Sep 2009 09:27:01 -0700
Subject: Modules active. Tested HGGridConnector in standalone only for now.
Modules commands work.
---
bin/config-include/Standalone.ini | 5 +++++
bin/config-include/StandaloneHypergrid.ini | 7 ++++++-
2 files changed, 11 insertions(+), 1 deletion(-)
(limited to 'bin')
diff --git a/bin/config-include/Standalone.ini b/bin/config-include/Standalone.ini
index 24020b6..69c60ee 100644
--- a/bin/config-include/Standalone.ini
+++ b/bin/config-include/Standalone.ini
@@ -12,6 +12,7 @@
InventoryServices = "LocalInventoryServicesConnector"
NeighbourServices = "LocalNeighbourServicesConnector"
AuthorizationServices = "LocalAuthorizationServicesConnector"
+ GridServices = "LocalGridServicesConnector"
[AssetService]
LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService"
@@ -21,3 +22,7 @@
[AuthorizationService]
LocalServiceModule = "OpenSim.Services.AuthorizationService.dll:AuthorizationService"
+
+[GridService]
+ LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
+
\ No newline at end of file
diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini
index aa122be..24b0f26 100644
--- a/bin/config-include/StandaloneHypergrid.ini
+++ b/bin/config-include/StandaloneHypergrid.ini
@@ -12,9 +12,11 @@
InventoryServices = "HGInventoryBroker"
NeighbourServices = "LocalNeighbourServicesConnector"
AuthorizationServices = "LocalAuthorizationServicesConnector"
+ GridServices = "HGGridServicesConnector"
InventoryServiceInConnector = true
AssetServiceInConnector = true
HGAuthServiceInConnector = true
+ HypergridServiceInConnector = true
[AssetService]
; For the AssetServiceInConnector
@@ -39,4 +41,7 @@
; For the HGAuthServiceInConnector
LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:HGAuthenticationService"
-
\ No newline at end of file
+[GridService]
+ LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
+ GridServiceConnectorModule = "OpenSim.Region.CoreModules.dll:LocalGridServiceConnector"
+ StorageProvider = "OpenSim.Data.Null.dll"
\ No newline at end of file
--
cgit v1.1
From 67276589c883fe1a74d8d52057db1431d637dade Mon Sep 17 00:00:00 2001
From: Diva Canto
Date: Wed, 23 Sep 2009 17:20:07 -0700
Subject: Changed IGridService to use the new GridRegion data structure instead
of old SimpleRegionInfo. Added grid configs to standalones.
---
bin/config-include/Standalone.ini | 1 +
bin/config-include/StandaloneHypergrid.ini | 4 ++--
2 files changed, 3 insertions(+), 2 deletions(-)
(limited to 'bin')
diff --git a/bin/config-include/Standalone.ini b/bin/config-include/Standalone.ini
index 69c60ee..5a5cbff 100644
--- a/bin/config-include/Standalone.ini
+++ b/bin/config-include/Standalone.ini
@@ -25,4 +25,5 @@
[GridService]
LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
+ StorageProvider = "OpenSim.Data.Null.dll:NullRegionData"
\ No newline at end of file
diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini
index 24b0f26..b14517d 100644
--- a/bin/config-include/StandaloneHypergrid.ini
+++ b/bin/config-include/StandaloneHypergrid.ini
@@ -43,5 +43,5 @@
[GridService]
LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
- GridServiceConnectorModule = "OpenSim.Region.CoreModules.dll:LocalGridServiceConnector"
- StorageProvider = "OpenSim.Data.Null.dll"
\ No newline at end of file
+ GridServiceConnectorModule = "OpenSim.Region.CoreModules.dll:LocalGridServicesConnector"
+ StorageProvider = "OpenSim.Data.Null.dll:NullRegionData"
\ No newline at end of file
--
cgit v1.1
From 6a5d7650d02979c74abcbbb3595729a4a6b55411 Mon Sep 17 00:00:00 2001
From: Diva Canto
Date: Thu, 24 Sep 2009 18:23:55 -0700
Subject: All tests pass for MySQL/MySQLRegionData. Added
OpenSim.GridServer.ini.example that I have been using for testing the ROBUST
grid service with the GridClient.
---
bin/OpenSim.GridServer.ini.example | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
create mode 100644 bin/OpenSim.GridServer.ini.example
(limited to 'bin')
diff --git a/bin/OpenSim.GridServer.ini.example b/bin/OpenSim.GridServer.ini.example
new file mode 100644
index 0000000..695bf9e
--- /dev/null
+++ b/bin/OpenSim.GridServer.ini.example
@@ -0,0 +1,35 @@
+; * The startup section lists all the connectors to start up in this server
+; * instance. This may be only one, or it may be the entire server suite.
+; * Multiple connectors should be seaprated by commas.
+; *
+; * These are the IN connectors the server uses, the in connectors
+; * read this config file and load the needed OUT and database connectors
+; *
+; *
+[Startup]
+ ServiceConnectors = "OpenSim.Server.Handlers.dll:GridServiceConnector"
+
+; * This is common for all services, it's the network setup for the entire
+; * server instance
+; *
+[Network]
+ port = 8002
+
+; * The following are for the remote console
+; * They have no effect for the local or basic console types
+; * Leave commented to diable logins to the console
+;ConsoleUser = Test
+;ConsolePass = secret
+
+; * As an example, the below configuration precisely mimicks the legacy
+; * asset server. It is read by the asset IN connector (defined above)
+; * and it then loads the OUT connector (a local database module). That,
+; * in turn, reads the asset loader and database connection information
+; *
+[GridService]
+ LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
+ StorageProvider = "OpenSim.Data.Null.dll:NullRegionData"
+ ;StorageProvider = "OpenSim.Data.MySQL.dll:MySqlRegionData"
+ ;ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=***;"
+ Realm = "regions"
+
--
cgit v1.1
From be7afa0b1f2b4947f62d5a541663d665c78482d3 Mon Sep 17 00:00:00 2001
From: Diva Canto
Date: Fri, 25 Sep 2009 08:44:26 -0700
Subject: Changed a [Groups] config as per mcortez' request.
---
bin/OpenSim.ini.example | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
(limited to 'bin')
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example
index e34378c..7a65efe 100644
--- a/bin/OpenSim.ini.example
+++ b/bin/OpenSim.ini.example
@@ -1311,7 +1311,7 @@
;NoticesEnabled = true
; This makes the Groups modules very chatty on the console.
- ;DebugEnabled = true
+ DebugEnabled = false
; Specify which messaging module to use for groups messaging and if it's enabled
;MessagingModule = GroupsMessagingModule
--
cgit v1.1