diff options
Diffstat (limited to 'bin')
-rw-r--r-- | bin/OpenSim.Server.ini.example | 89 | ||||
-rw-r--r-- | bin/config-include/Grid.ini | 20 | ||||
-rw-r--r-- | bin/config-include/GridCommon.ini.example | 18 | ||||
-rw-r--r-- | bin/config-include/GridHypergrid.ini | 23 | ||||
-rw-r--r-- | bin/config-include/Standalone.ini | 7 | ||||
-rw-r--r-- | bin/config-include/StandaloneHypergrid.ini | 31 |
6 files changed, 141 insertions, 47 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] |
12 | ServiceConnectors = "OpenSim.Server.Handlers.dll:AssetServiceConnector,OpenSim.Server.Handlers.dll:InventoryServiceInConnector,OpenSim.Server.Handlers.dll:FreeswitchServerConnector,OpenSim.Server.Handlers.dll:GridServiceConnector" | 13 | ServiceConnectors = "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] |
18 | port = 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] |
32 | LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService" | 33 | LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService" |
33 | DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll" | 34 | DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll" |
34 | AssetLoaderArgs = "assets/AssetSets.xml" | 35 | AssetLoaderArgs = "assets/AssetSets.xml" |
35 | StorageProvider = "OpenSim.Data.MySQL.dll" | 36 | StorageProvider = "OpenSim.Data.MySQL.dll" |
36 | ConnectionString = "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] |
42 | LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService" | 43 | LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService" |
43 | UserServerURI = "http://127.0.0.1:8002" | 44 | UserServerURI = "http://127.0.0.1:8002" |
44 | SessionAuthentication = "false" | 45 | SessionAuthentication = "false" |
45 | StorageProvider = "OpenSim.Data.MySQL.dll" | 46 | StorageProvider = "OpenSim.Data.MySQL.dll" |
46 | ConnectionString = "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] |
50 | LocalServiceModule = "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] |
58 | AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" | 69 | AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" |
59 | StorageProvider = "OpenSim.Data.MySQL.dll" | 70 | StorageProvider = "OpenSim.Data.MySQL.dll" |
60 | ConnectionString = "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] |
68 | AuthenticationServiceModule = "OpenSim.Services.UserService.dll:UserAccountService" | 78 | AuthenticationServiceModule = "OpenSim.Services.UserService.dll:UserAccountService" |
69 | StorageProvider = "OpenSim.Data.MySQL.dll" | 79 | LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService" |
70 | ConnectionString = "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 | |
78 | LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" | 89 | [LibraryService] |
79 | StorageProvider = "OpenSim.Data.MySQL.dll:MySqlRegionData" | 90 | LibraryName = "OpenSim Library" |
80 | ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=grid;" | 91 | DefaultLibrary = "./inventory/Libraries.xml" |
81 | Realm = "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/Grid.ini b/bin/config-include/Grid.ini index 5b19130..ef8008c 100644 --- a/bin/config-include/Grid.ini +++ b/bin/config-include/Grid.ini | |||
@@ -10,15 +10,21 @@ | |||
10 | [Modules] | 10 | [Modules] |
11 | AssetServices = "RemoteAssetServicesConnector" | 11 | AssetServices = "RemoteAssetServicesConnector" |
12 | InventoryServices = "RemoteInventoryServicesConnector" | 12 | InventoryServices = "RemoteInventoryServicesConnector" |
13 | AuthorizationServices = "RemoteAuthorizationServicesConnector" | ||
14 | NeighbourServices = "RemoteNeighbourServicesConnector" | ||
15 | GridServices = "RemoteGridServicesConnector" | 13 | GridServices = "RemoteGridServicesConnector" |
16 | NeighbourServiceInConnector = true | 14 | NeighbourServices = "RemoteNeighbourServicesConnector" |
15 | AuthorizationServices = "RemoteAuthorizationServicesConnector" | ||
16 | PresenceServices = "RemotePresenceServicesConnector" | ||
17 | UserAccountServices = "RemoteUserAccountServicesConnector" | ||
18 | SimulationServices = "RemoteSimulationConnectorModule" | ||
17 | LandServiceInConnector = true | 19 | LandServiceInConnector = true |
18 | LLProxyLoginModule = true | 20 | NeighbourServiceInConnector = true |
21 | SimulationServiceInConnector = true | ||
19 | 22 | ||
20 | [GridService] | 23 | [GridService] |
21 | LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" | 24 | LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" |
22 | ; for the LocalGridServicesConnector which is used by the Remote one | 25 | ; for the LocalGridServicesConnector which is used by the Remote one |
23 | StorageProvider = "OpenSim.Data.Null.dll:NullRegionData" | 26 | StorageProvider = "OpenSim.Data.Null.dll:NullRegionData" |
24 | \ No newline at end of file | 27 | |
28 | ; Temporary... | ||
29 | [Communications] | ||
30 | InterregionComms = "LocalComms" \ No newline at end of file | ||
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..512e88f 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,12 @@ | |||
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" |
47 | |||
48 | ; Temporary... | ||
49 | [Communications] | ||
50 | InterregionComms = "LocalComms" \ No newline at end of file | ||
diff --git a/bin/config-include/Standalone.ini b/bin/config-include/Standalone.ini index cdfdf4b..e881e30 100644 --- a/bin/config-include/Standalone.ini +++ b/bin/config-include/Standalone.ini | |||
@@ -13,6 +13,8 @@ | |||
13 | NeighbourServices = "LocalNeighbourServicesConnector" | 13 | NeighbourServices = "LocalNeighbourServicesConnector" |
14 | AuthorizationServices = "LocalAuthorizationServicesConnector" | 14 | AuthorizationServices = "LocalAuthorizationServicesConnector" |
15 | GridServices = "LocalGridServicesConnector" | 15 | GridServices = "LocalGridServicesConnector" |
16 | PresenceServices = "LocalPresenceServicesConnector" | ||
17 | UserAccountServices = "LocalUserAccountServicesConnector" | ||
16 | LibraryModule = true | 18 | LibraryModule = true |
17 | 19 | ||
18 | [AssetService] | 20 | [AssetService] |
@@ -28,3 +30,8 @@ | |||
28 | LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" | 30 | LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" |
29 | Realm = "regions" | 31 | Realm = "regions" |
30 | 32 | ||
33 | [PresenceService] | ||
34 | LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService" | ||
35 | |||
36 | [UserAccountService] | ||
37 | LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService" | ||
diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini index 909286c..5e54cde 100644 --- a/bin/config-include/StandaloneHypergrid.ini +++ b/bin/config-include/StandaloneHypergrid.ini | |||
@@ -14,14 +14,19 @@ | |||
14 | AssetServices = "HGAssetBroker" | 14 | AssetServices = "HGAssetBroker" |
15 | InventoryServices = "HGInventoryBroker" | 15 | InventoryServices = "HGInventoryBroker" |
16 | NeighbourServices = "RemoteNeighbourServicesConnector" | 16 | NeighbourServices = "RemoteNeighbourServicesConnector" |
17 | AuthenticationServices = "LocalAuthenticationServicesConnector" | ||
17 | AuthorizationServices = "LocalAuthorizationServicesConnector" | 18 | AuthorizationServices = "LocalAuthorizationServicesConnector" |
18 | GridServices = "HGGridServicesConnector" | 19 | GridServices = "HGGridServicesConnector" |
20 | PresenceServices = "LocalPresenceServicesConnector" | ||
21 | UserAccountServices = "LocalUserAccountServicesConnector" | ||
22 | SimulationServices = "RemoteSimulationConnectorModule" | ||
19 | InventoryServiceInConnector = true | 23 | InventoryServiceInConnector = true |
20 | AssetServiceInConnector = true | 24 | AssetServiceInConnector = true |
21 | HGAuthServiceInConnector = true | 25 | HGAuthServiceInConnector = true |
22 | HypergridServiceInConnector = true | 26 | HypergridServiceInConnector = true |
23 | NeighbourServiceInConnector = true | 27 | NeighbourServiceInConnector = true |
24 | LibraryModule = true | 28 | LibraryModule = true |
29 | LLLoginServiceInConnector = true | ||
25 | 30 | ||
26 | [AssetService] | 31 | [AssetService] |
27 | ; For the AssetServiceInConnector | 32 | ; For the AssetServiceInConnector |
@@ -39,12 +44,16 @@ | |||
39 | LocalGridInventoryService = "OpenSim.Services.InventoryService.dll:InventoryService" | 44 | LocalGridInventoryService = "OpenSim.Services.InventoryService.dll:InventoryService" |
40 | HypergridInventoryService = "OpenSim.Services.Connectors.dll:HGInventoryServiceConnector" | 45 | HypergridInventoryService = "OpenSim.Services.Connectors.dll:HGInventoryServiceConnector" |
41 | 46 | ||
47 | [LibraryService] | ||
48 | LocalServiceModule = "OpenSim.Services.InventoryService.dll:LibraryService" | ||
49 | LibraryName = "OpenSim Library" | ||
50 | DefaultLibrary = "./inventory/Libraries.xml" | ||
51 | |||
42 | [AuthorizationService] | 52 | [AuthorizationService] |
43 | LocalServiceModule = "OpenSim.Services.AuthorizationService.dll:AuthorizationService" | 53 | LocalServiceModule = "OpenSim.Services.AuthorizationService.dll:AuthorizationService" |
44 | 54 | ||
45 | [AuthenticationService] | 55 | [AuthenticationService] |
46 | ; For the HGAuthServiceInConnector | 56 | LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" |
47 | LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:HGAuthenticationService" | ||
48 | 57 | ||
49 | [GridService] | 58 | [GridService] |
50 | ; for the HGGridServicesConnector to instantiate | 59 | ; for the HGGridServicesConnector to instantiate |
@@ -52,3 +61,21 @@ | |||
52 | ; LocalGridServicesConnector needs this | 61 | ; LocalGridServicesConnector needs this |
53 | LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" | 62 | LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" |
54 | Realm = "regions" | 63 | Realm = "regions" |
64 | |||
65 | [PresenceService] | ||
66 | LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService" | ||
67 | |||
68 | [UserAccountService] | ||
69 | LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService" | ||
70 | |||
71 | [LoginService] | ||
72 | LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService" | ||
73 | UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService" | ||
74 | AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" | ||
75 | InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService" | ||
76 | PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" | ||
77 | GridService = "OpenSim.Services.GridService.dll:GridService" | ||
78 | |||
79 | DefaultRegion = "OpenSim Test" | ||
80 | WelcomeMessage = "Welcome, Avatar!" | ||
81 | |||