aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin
diff options
context:
space:
mode:
authorDiva Canto2010-01-03 11:44:57 -0800
committerDiva Canto2010-01-03 11:44:57 -0800
commit99efa99585639c94fdb484681663ac7b6f03538e (patch)
treef74eb3e9c080e381d37b2d936ba9b0c091196f56 /bin
parent* Changed ISimulation interface to take a GridRegion as input arg instead of ... (diff)
downloadopensim-SC_OLD-99efa99585639c94fdb484681663ac7b6f03538e.zip
opensim-SC_OLD-99efa99585639c94fdb484681663ac7b6f03538e.tar.gz
opensim-SC_OLD-99efa99585639c94fdb484681663ac7b6f03538e.tar.bz2
opensim-SC_OLD-99efa99585639c94fdb484681663ac7b6f03538e.tar.xz
Successfully logged into a grid.
Diffstat (limited to 'bin')
-rw-r--r--bin/OpenSim.Server.ini.example89
-rw-r--r--bin/config-include/GridCommon.ini.example18
-rw-r--r--bin/config-include/GridHypergrid.ini19
3 files changed, 88 insertions, 38 deletions
diff --git a/bin/OpenSim.Server.ini.example b/bin/OpenSim.Server.ini.example
index f3d222f..b93bbd6 100644
--- a/bin/OpenSim.Server.ini.example
+++ b/bin/OpenSim.Server.ini.example
@@ -1,21 +1,22 @@
1; * The startup section lists all the connectors to start up in this server 1; * The startup section lists all the connectors to start up in this server
2; * instance. This may be only one, or it may be the entire server suite. 2; * instance. This may be only one, or it may be the entire server suite.
3; * Multiple connectors should be seaprated by commas. 3; * Multiple connectors should be seaprated by commas.
4; * The startup section lists all the connectors to start up in this server
5; * instance. This may be only one, or it may be the entire server suite.
6; * Multiple connectors should be seaprated by commas.
4; * 7; *
5; * These are the IN connectors the server uses, the in connectors 8; * These are the IN connectors the server uses, the in connectors
6; * read this config file and load the needed OUT and database connectors 9; * read this config file and load the needed service and database connectors
7; * 10; *
8; * Add "OpenSim.Server.Handlers.dll:AuthenticationServiceConnector" to
9; * enable the experimental authentication service
10; * 11; *
11[Startup] 12[Startup]
12ServiceConnectors = "OpenSim.Server.Handlers.dll:AssetServiceConnector,OpenSim.Server.Handlers.dll:InventoryServiceInConnector,OpenSim.Server.Handlers.dll:FreeswitchServerConnector,OpenSim.Server.Handlers.dll:GridServiceConnector" 13ServiceConnectors = "OpenSim.Server.Handlers.dll:AssetServiceConnector,OpenSim.Server.Handlers.dll:InventoryServiceInConnector,OpenSim.Server.Handlers.dll:FreeswitchServerConnector,OpenSim.Server.Handlers.dll:GridServiceConnector,OpenSim.Server.Handlers.dll:AuthenticationServiceConnector,OpenSim.Server.Handlers.dll:AvatarServiceConnector,OpenSim.Server.Handlers.dll:LLLoginServiceInConnector,OpenSim.Server.Handlers.dll:PresenceServiceConnector,,OpenSim.Server.Handlers.dll:UserAccountServiceConnector"
13 14
14; * This is common for all services, it's the network setup for the entire 15; * This is common for all services, it's the network setup for the entire
15; * server instance 16; * server instance
16; * 17; *
17[Network] 18[Network]
18port = 8003 19 port = 8003
19 20
20; * The following are for the remote console 21; * The following are for the remote console
21; * They have no effect for the local or basic console types 22; * They have no effect for the local or basic console types
@@ -29,25 +30,35 @@ port = 8003
29; * in turn, reads the asset loader and database connection information 30; * in turn, reads the asset loader and database connection information
30; * 31; *
31[AssetService] 32[AssetService]
32LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService" 33 LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService"
33DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll" 34 DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
34AssetLoaderArgs = "assets/AssetSets.xml" 35 AssetLoaderArgs = "assets/AssetSets.xml"
35StorageProvider = "OpenSim.Data.MySQL.dll" 36 StorageProvider = "OpenSim.Data.MySQL.dll"
36ConnectionString = "Data Source=localhost;Database=grid;User ID=grid;Password=grid;" 37 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;"
37 38
38; * This configuration loads the inventory server modules. It duplicates 39; * This configuration loads the inventory server modules. It duplicates
39; * the function of the legacy inventory server 40; * the function of the legacy inventory server
40; * 41; *
41[InventoryService] 42[InventoryService]
42LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService" 43 LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService"
43UserServerURI = "http://127.0.0.1:8002" 44 UserServerURI = "http://127.0.0.1:8002"
44SessionAuthentication = "false" 45 SessionAuthentication = "false"
45StorageProvider = "OpenSim.Data.MySQL.dll" 46 StorageProvider = "OpenSim.Data.MySQL.dll"
46ConnectionString = "Data Source=localhost;Database=grid;User ID=grid;Password=grid;" 47 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;"
48
49; * This is the new style grid service.
50; * "Realm" is the table that is used for user lookup.
51; * It defaults to "regions", which uses the legacy tables
52; *
53[GridService]
54 LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
55 StorageProvider = "OpenSim.Data.MySQL.dll:MySqlRegionData"
56 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;"
57 Realm = "regions"
47 58
48; * This is the configuration for the freeswitch server in grid mode 59; * This is the configuration for the freeswitch server in grid mode
49[FreeswitchService] 60[FreeswitchService]
50LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService" 61 LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService"
51 62
52; * This is the new style authentication service. Currently, only MySQL 63; * This is the new style authentication service. Currently, only MySQL
53; * is implemented. "Realm" is the table that is used for user lookup. 64; * is implemented. "Realm" is the table that is used for user lookup.
@@ -55,27 +66,39 @@ LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService"
55; * as an authentication source. 66; * as an authentication source.
56; * 67; *
57[AuthenticationService] 68[AuthenticationService]
58AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" 69 AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
59StorageProvider = "OpenSim.Data.MySQL.dll" 70 StorageProvider = "OpenSim.Data.MySQL.dll"
60ConnectionString = "Data Source=localhost;Database=grid;User ID=grid;Password=grid;" 71 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;"
61; Realm = "users"
62 72
63; * This is the new style user service. 73; * This is the new style user service.
64; * "Realm" is the table that is used for user lookup. 74; * "Realm" is the table that is used for user lookup.
65; * It defaults to "users", which uses the legacy tables 75; * It defaults to "users", which uses the legacy tables
66; * 76; *
67[UserAccountService] 77[UserAccountService]
68AuthenticationServiceModule = "OpenSim.Services.UserService.dll:UserAccountService" 78 AuthenticationServiceModule = "OpenSim.Services.UserService.dll:UserAccountService"
69StorageProvider = "OpenSim.Data.MySQL.dll" 79 LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
70ConnectionString = "Data Source=localhost;Database=grid;User ID=grid;Password=grid;" 80 StorageProvider = "OpenSim.Data.MySQL.dll"
71; Realm = "users" 81 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;"
82 ; Realm = "useraccounts"
72 83
73; * This is the new style grid service. 84[PresenceService]
74; * "Realm" is the table that is used for user lookup. 85 LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
75; * It defaults to "regions", which uses the legacy tables 86 StorageProvider = "OpenSim.Data.MySQL.dll"
76; * 87 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;"
77[GridService] 88
78LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" 89[LibraryService]
79StorageProvider = "OpenSim.Data.MySQL.dll:MySqlRegionData" 90 LibraryName = "OpenSim Library"
80ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=grid;" 91 DefaultLibrary = "./inventory/Libraries.xml"
81Realm = "regions" 92
93[LoginService]
94 LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService"
95 UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
96 AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
97 InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService"
98 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
99 GridService = "OpenSim.Services.GridService.dll:GridService"
100 SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
101 LibraryService = "OpenSim.Services.InventoryService.dll:LibraryService"
102
103 DefaultRegion = "OpenSim Test"
104 WelcomeMessage = "Welcome, Avatar!"
diff --git a/bin/config-include/GridCommon.ini.example b/bin/config-include/GridCommon.ini.example
index 6da0f1e..6a65523 100644
--- a/bin/config-include/GridCommon.ini.example
+++ b/bin/config-include/GridCommon.ini.example
@@ -21,6 +21,24 @@
21 ; 21 ;
22 GridServerURI = "http://mygridserver.com:8003" 22 GridServerURI = "http://mygridserver.com:8003"
23 23
24[PresenceService]
25 ;
26 ; change this to your grid-wide presence server
27 ;
28 PresenceServerURI = "http://mygridserver.com:8003"
29
30[UserAccountService]
31 ;
32 ; change this to your grid-wide user accounts server
33 ;
34 UserAccountServerURI = "http://mygridserver.com:8003"
35
36[AuthenticationService]
37 ;
38 ; change this to your grid-wide authentication server
39 ;
40 AuthenticationServerURI = "http://mygridserver.com:8003"
41
24[Modules] 42[Modules]
25 ;; Choose 0 or 1 cache modules, and the corresponding config file, if it exists. 43 ;; Choose 0 or 1 cache modules, and the corresponding config file, if it exists.
26 ;; Copy the config .example file into your own .ini file and change configs there 44 ;; Copy the config .example file into your own .ini file and change configs there
diff --git a/bin/config-include/GridHypergrid.ini b/bin/config-include/GridHypergrid.ini
index a5fe6e9..94b9f69 100644
--- a/bin/config-include/GridHypergrid.ini
+++ b/bin/config-include/GridHypergrid.ini
@@ -13,12 +13,21 @@
13[Modules] 13[Modules]
14 AssetServices = "HGAssetBroker" 14 AssetServices = "HGAssetBroker"
15 InventoryServices = "HGInventoryBroker" 15 InventoryServices = "HGInventoryBroker"
16 NeighbourServices = "RemoteNeighbourServicesConnector"
17 GridServices = "HGGridServicesConnector" 16 GridServices = "HGGridServicesConnector"
18 NeighbourServiceInConnector = true 17 NeighbourServices = "RemoteNeighbourServicesConnector"
18 AuthenticationServices = "RemoteAuthenticationServicesConnector"
19 AuthorizationServices = "LocalAuthorizationServicesConnector"
20 PresenceServices = "RemotePresenceServicesConnector"
21 UserAccountServices = "RemoteUserAccountServicesConnector"
22 SimulationServices = "RemoteSimulationConnectorModule"
19 LandServiceInConnector = true 23 LandServiceInConnector = true
24 NeighbourServiceInConnector = true
20 HypergridServiceInConnector = true 25 HypergridServiceInConnector = true
21 LLProxyLoginModule = true 26 SimulationServiceInConnector = true
27 InventoryServiceInConnector = false
28 AssetServiceInConnector = false
29 LibraryModule = false
30 LLLoginServiceInConnector = false
22 31
23[AssetService] 32[AssetService]
24 LocalGridAssetService = "OpenSim.Services.Connectors.dll:AssetServicesConnector" 33 LocalGridAssetService = "OpenSim.Services.Connectors.dll:AssetServicesConnector"
@@ -30,8 +39,8 @@
30 39
31[GridService] 40[GridService]
32 ; for the HGGridServicesConnector to instantiate 41 ; for the HGGridServicesConnector to instantiate
33 GridServiceConnectorModule = "OpenSim.Region.CoreModules.dll:RemoteGridServicesConnector" 42 GridServiceConnectorModule = "OpenSim.Region.CoreModules.dll:RemoteGridServicesConnector"
34 ; RemoteGridServicesConnector instantiates a LocalGridServicesConnector, 43 ; RemoteGridServicesConnector instantiates a LocalGridServicesConnector,
35 ; which in turn uses this 44 ; which in turn uses this
36 LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" 45 LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
37 StorageProvider = "OpenSim.Data.Null.dll:NullRegionData" 46 StorageProvider = "OpenSim.Data.Null.dll:NullRegionData"