aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/OpenSim.Server.ini.example
diff options
context:
space:
mode:
authorDiva Canto2010-01-31 14:37:22 -0800
committerDiva Canto2010-01-31 14:37:22 -0800
commit0b89afd3e5a8fe95677fb916cfde649361a349fe (patch)
treece9a9e0bc3f8252717c81dfb0c8228be93d23c95 /bin/OpenSim.Server.ini.example
parentIn HG, add asset service handlers to 8002, to make it even easier. (diff)
downloadopensim-SC_OLD-0b89afd3e5a8fe95677fb916cfde649361a349fe.zip
opensim-SC_OLD-0b89afd3e5a8fe95677fb916cfde649361a349fe.tar.gz
opensim-SC_OLD-0b89afd3e5a8fe95677fb916cfde649361a349fe.tar.bz2
opensim-SC_OLD-0b89afd3e5a8fe95677fb916cfde649361a349fe.tar.xz
* Simplified the configuration by having [DatabaseService] in it
* Fixed configuration issue for HGInventoryServerInConnector * Corrected typos in debug messages
Diffstat (limited to 'bin/OpenSim.Server.ini.example')
-rw-r--r--bin/OpenSim.Server.ini.example24
1 files changed, 5 insertions, 19 deletions
diff --git a/bin/OpenSim.Server.ini.example b/bin/OpenSim.Server.ini.example
index 6912d88..543d20d 100644
--- a/bin/OpenSim.Server.ini.example
+++ b/bin/OpenSim.Server.ini.example
@@ -26,6 +26,11 @@ ServiceConnectors = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector,8003
26;ConsolePass = secret 26;ConsolePass = secret
27;ConsolePort = 0 27;ConsolePort = 0
28 28
29[DatabaseService]
30 StorageProvider = "OpenSim.Data.MySQL.dll"
31 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;"
32
33
29; * As an example, the below configuration precisely mimicks the legacy 34; * As an example, the below configuration precisely mimicks the legacy
30; * asset server. It is read by the asset IN connector (defined above) 35; * asset server. It is read by the asset IN connector (defined above)
31; * and it then loads the OUT connector (a local database module). That, 36; * and it then loads the OUT connector (a local database module). That,
@@ -35,8 +40,6 @@ ServiceConnectors = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector,8003
35 LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService" 40 LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService"
36 DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll" 41 DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
37 AssetLoaderArgs = "assets/AssetSets.xml" 42 AssetLoaderArgs = "assets/AssetSets.xml"
38 StorageProvider = "OpenSim.Data.MySQL.dll"
39 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;"
40 43
41; * This configuration loads the inventory server modules. It duplicates 44; * This configuration loads the inventory server modules. It duplicates
42; * the function of the legacy inventory server 45; * the function of the legacy inventory server
@@ -44,8 +47,6 @@ ServiceConnectors = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector,8003
44[InventoryService] 47[InventoryService]
45 LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService" 48 LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService"
46 SessionAuthentication = "false" 49 SessionAuthentication = "false"
47 StorageProvider = "OpenSim.Data.MySQL.dll"
48 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;"
49 50
50; * This is the new style grid service. 51; * This is the new style grid service.
51; * "Realm" is the table that is used for user lookup. 52; * "Realm" is the table that is used for user lookup.
@@ -53,8 +54,6 @@ ServiceConnectors = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector,8003
53; * 54; *
54[GridService] 55[GridService]
55 LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" 56 LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
56 StorageProvider = "OpenSim.Data.MySQL.dll:MySqlRegionData"
57 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;"
58 Realm = "regions" 57 Realm = "regions"
59 ; AllowDuplicateNames = "True" 58 ; AllowDuplicateNames = "True"
60 ;; Next, we can specify properties of regions, including default and fallback regions 59 ;; Next, we can specify properties of regions, including default and fallback regions
@@ -77,9 +76,6 @@ ServiceConnectors = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector,8003
77[AuthenticationService] 76[AuthenticationService]
78 ; for the server connector 77 ; for the server connector
79 LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" 78 LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
80 ; for the service
81 StorageProvider = "OpenSim.Data.MySQL.dll"
82 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;"
83 79
84[OpenIdService] 80[OpenIdService]
85 ; for the server connector 81 ; for the server connector
@@ -93,9 +89,6 @@ ServiceConnectors = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector,8003
93[UserAccountService] 89[UserAccountService]
94 ; for the server connector 90 ; for the server connector
95 LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService" 91 LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
96 ; for the service
97 StorageProvider = "OpenSim.Data.MySQL.dll"
98 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;"
99 ; Realm = "useraccounts" 92 ; Realm = "useraccounts"
100 ;; These are for creating new accounts by the service 93 ;; These are for creating new accounts by the service
101 AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" 94 AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
@@ -106,16 +99,10 @@ ServiceConnectors = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector,8003
106[PresenceService] 99[PresenceService]
107 ; for the server connector 100 ; for the server connector
108 LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService" 101 LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
109 ; for the service
110 StorageProvider = "OpenSim.Data.MySQL.dll"
111 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;"
112 102
113[AvatarService] 103[AvatarService]
114 ; for the server connector 104 ; for the server connector
115 LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService" 105 LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService"
116 ; for the service
117 StorageProvider = "OpenSim.Data.MySQL.dll"
118 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;"
119 106
120[LibraryService] 107[LibraryService]
121 LibraryName = "OpenSim Library" 108 LibraryName = "OpenSim Library"
@@ -134,6 +121,5 @@ ServiceConnectors = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector,8003
134 SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector" 121 SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
135 LibraryService = "OpenSim.Services.InventoryService.dll:LibraryService" 122 LibraryService = "OpenSim.Services.InventoryService.dll:LibraryService"
136 123
137 DefaultRegion = "OpenSim Test"
138 WelcomeMessage = "Welcome, Avatar!" 124 WelcomeMessage = "Welcome, Avatar!"
139 125