OpenSim.Server.ini 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. ; * Run a ROBUST server shell like this, from bin:
  2. ; * $ OpenSim.Server.exe -inifile ../OpenSim/Tests/Clients/Presence/OpenSim.Server.ini
  3. ; *
  4. ; * Then run this client like this, from bin:
  5. ; * $ OpenSim.Tests.Clients.PresenceClient.exe
  6. ; *
  7. ; *
  8. [Startup]
  9. ServiceConnectors = "OpenSim.Server.Handlers.dll:PresenceServiceConnector"
  10. ; * This is common for all services, it's the network setup for the entire
  11. ; * server instance
  12. ; *
  13. [Network]
  14. port = 8003
  15. ; * The following are for the remote console
  16. ; * They have no effect for the local or basic console types
  17. ; * Leave commented to diable logins to the console
  18. ;ConsoleUser = Test
  19. ;ConsolePass = secret
  20. ; * As an example, the below configuration precisely mimicks the legacy
  21. ; * asset server. It is read by the asset IN connector (defined above)
  22. ; * and it then loads the OUT connector (a local database module). That,
  23. ; * in turn, reads the asset loader and database connection information
  24. ; *
  25. [PresenceService]
  26. LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
  27. StorageProvider = "OpenSim.Data.MySQL.dll"
  28. ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;"