diff options
author | Diva Canto | 2010-01-03 11:44:57 -0800 |
---|---|---|
committer | Diva Canto | 2010-01-03 11:44:57 -0800 |
commit | 99efa99585639c94fdb484681663ac7b6f03538e (patch) | |
tree | f74eb3e9c080e381d37b2d936ba9b0c091196f56 /bin/OpenSim.Server.ini.example | |
parent | * Changed ISimulation interface to take a GridRegion as input arg instead of ... (diff) | |
download | opensim-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/OpenSim.Server.ini.example')
-rw-r--r-- | bin/OpenSim.Server.ini.example | 89 |
1 files changed, 56 insertions, 33 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!" | ||