From 10e18f465e0540e9d09d47462c8166cb60a38426 Mon Sep 17 00:00:00 2001 From: Justin Clark-Casey (justincc) Date: Fri, 23 Apr 2010 21:29:09 +0100 Subject: minor: eliminate configuration section handling deprecation of OpenSim.DataStore.MonoSqlite.dll, since this hasn't exist for a long, long time --- bin/OpenSim.ini.example | 1 - 1 file changed, 1 deletion(-) (limited to 'bin/OpenSim.ini.example') diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example index 0630688..d49692e 100644 --- a/bin/OpenSim.ini.example +++ b/bin/OpenSim.ini.example @@ -1232,7 +1232,6 @@ ;; default standalone, overridable in StandaloneCommon.ini StorageProvider = "OpenSim.Data.SQLite.dll" - [AssetService] DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll" AssetLoaderArgs = "assets/AssetSets.xml" -- cgit v1.1 From 847cc4fceb8ac363cdfdb2a5360b93230c9068e5 Mon Sep 17 00:00:00 2001 From: Justin Clark-Casey (justincc) Date: Fri, 23 Apr 2010 21:31:08 +0100 Subject: remove [DatabaseService] section from OpenSim.ini since this is always present in included configuration files --- bin/OpenSim.ini.example | 4 ---- 1 file changed, 4 deletions(-) (limited to 'bin/OpenSim.ini.example') diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example index d49692e..7d65e77 100644 --- a/bin/OpenSim.ini.example +++ b/bin/OpenSim.ini.example @@ -1228,10 +1228,6 @@ ;; These defaults allow OpenSim to work out of the box with ;; zero configuration ;; -[DatabaseService] - ;; default standalone, overridable in StandaloneCommon.ini - StorageProvider = "OpenSim.Data.SQLite.dll" - [AssetService] DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll" AssetLoaderArgs = "assets/AssetSets.xml" -- cgit v1.1 From 15d42d211161b304bc4281018b891a063be4612d Mon Sep 17 00:00:00 2001 From: Justin Clark-Casey (justincc) Date: Fri, 23 Apr 2010 22:06:02 +0100 Subject: Add instructions for using SQLiteNG to OpenSim.ini and config-include/StandaloneCommon.ini Unfortunately, database settings need to be changed in two places. --- bin/OpenSim.ini.example | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'bin/OpenSim.ini.example') diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example index 7d65e77..59bce36 100644 --- a/bin/OpenSim.ini.example +++ b/bin/OpenSim.ini.example @@ -112,9 +112,11 @@ ;storage_plugin = "OpenSim.Data.Null.dll" ; --- To use sqlite as region storage: - ; NOTE: SQLite and OpenSim are not functioning properly with Mono 2.4.3 or greater. - ; If you are using Mono you probably should be using MySQL + ; PLEASE NOTE: If you use want to use SQLite with Mono 2.6 and above, you must use the SQLiteNG plugin rather than the existing SQLite one + ; do this by commenting out the OpenSim.Data.SQLite.dll line below and uncommenting the OpenSim.Data.SQLiteNG.dll one + ; You will also need to do the same thing in config-include/StandaloneCommon.ini if you are running in standalone mode storage_plugin = "OpenSim.Data.SQLite.dll" + ; storage_plugin = "OpenSim.Data.SQLiteNG.dll" storage_connection_string="URI=file:OpenSim.db,version=3"; ; --- To use MySQL storage, supply your own connection string (this is only an example): -- cgit v1.1