
Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 235

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 274

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 385

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 235

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 274

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 385
<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="http://itclive.spdns.de/wiki/lib/exe/css.php?s=feed" type="text/css"?>
<rss version="2.0">
    <channel xmlns:g="http://base.google.com/ns/1.0">
        <title>move IT Home Base</title>
        <description></description>
        <link>http://itclive.spdns.de/wiki/</link>
        <lastBuildDate>Mon, 06 Apr 2026 00:52:58 +0000</lastBuildDate>
        <generator>FeedCreator 1.8</generator>
        <image>
            <url>http://itclive.spdns.de/wiki/lib/tpl/peanutbutter2/images/favicon.ico</url>
            <title>move IT Home Base</title>
            <link>http://itclive.spdns.de/wiki/</link>
        </image>
        <item>
            <title>Standalone-Modus</title>
            <link>http://itclive.spdns.de/wiki/archiv/opensim/konfiguration/standalone-modus?do=revisions&amp;rev=1575021530</link>
            <description>
&lt;h2 class=&quot;sectionedit1&quot; id=&quot;standalone-modus&quot;&gt;Standalone-Modus&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;
Der Standalone-Modus klingt erst einmal so als wenn dies ein isolierter OpenSIM-Server ist, was aber durch die Möglichkeit von Hypergrid nicht wirklich so ist. Mittels &lt;a href=&quot;http://itclive.spdns.de/wiki/archiv/opensim/konfiguration/hypergrid&quot; class=&quot;wikilink1&quot; title=&quot;archiv:opensim:konfiguration:hypergrid&quot; data-wiki-id=&quot;archiv:opensim:konfiguration:hypergrid&quot;&gt;Hypergrid&lt;/a&gt; ist ein OpenSIM-Server im Standalone-Modus alles andere als „alleine“, sondern in der Regel sehr gut mit anderen OpenSIM-Servern vernetzt, egal ob diese im &lt;a href=&quot;http://itclive.spdns.de/wiki/archiv/opensim/konfiguration/grid-modus&quot; class=&quot;wikilink1&quot; title=&quot;archiv:opensim:konfiguration:grid-modus&quot; data-wiki-id=&quot;archiv:opensim:konfiguration:grid-modus&quot;&gt;Grid-Modus&lt;/a&gt; oder auch im Standalone-Modus laufen.
&lt;/p&gt;

&lt;p&gt;
Der Standalone-Modus wird in der OpenSIM-Konfigurationsdatei „&lt;a href=&quot;http://itclive.spdns.de/wiki/archiv/opensim/konfiguration/opensim.ini&quot; class=&quot;wikilink1&quot; title=&quot;archiv:opensim:konfiguration:opensim.ini&quot; data-wiki-id=&quot;archiv:opensim:konfiguration:opensim.ini&quot;&gt;opensim.ini&lt;/a&gt;“ mit folgendem Eintrag aktiviert:
&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;gridmode = false&lt;/pre&gt;

&lt;p&gt;
Zusätzlich muss die Standalone-Konfiguration im Bereich „Standalone“ angepasst werden. Beispiel für eine Standalone-Konfiguration mit einer mySQL-Datenbank:
&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;[StandAlone] 
    accounts_authenticate = true 
    welcome_message = &amp;quot;Willkommen bei OpenSIM !&amp;quot; 

    ; Asset database provider 
    ; asset_plugin = &amp;quot;OpenSim.Data.SQLite.dll&amp;quot; 
    asset_plugin = &amp;quot;OpenSim.Data.MySQL.dll&amp;quot; ; for mysql 
    ; asset_plugin = &amp;quot;OpenSim.Data.NHibernate.dll&amp;quot; ; for nhibernate 

    ; the Asset DB source.  This only works for sqlite, mysql, and nhibernate for now 
    ; Asset Source SQLite example 
    ; asset_source = &amp;quot;URI=file:Asset.db,version=3&amp;quot; 
    ; Asset Source NHibernate example (DIALECT;DRIVER;CONNECTSTRING) 
    ; asset_source = &amp;quot;SQLiteDialect;SqliteClientDriver;URI=file:Asset.db,version=3&amp;quot; 
    ; Asset Source MySQL example 
    asset_source = &amp;quot;Data Source=localhost;Database=opensim;User ID=opensimuser;Password=opensimpassword;&amp;quot; 

    ; Inventory database provider 
    ; inventory_plugin = &amp;quot;OpenSim.Data.SQLite.dll&amp;quot; 
    inventory_plugin = &amp;quot;OpenSim.Data.MySQL.dll&amp;quot; 
    ; inventory_plugin = &amp;quot;OpenSim.Data.NHibernate.dll&amp;quot; ; for nhibernate 

    ; Inventory Source NHibernate example (DIALECT;DRIVER;CONNECTSTRING) 
    ; inventory_source = &amp;quot;SQLiteDialect;SqliteClientDriver;URI=file:Inventory.db,version=3&amp;quot; 
    ; Inventory Source MySQL example 
    inventory_source = &amp;quot;Data Source=localhost;Database=opensim;User ID=opensimuser;Password=opensimpassword;&amp;quot; 

    ; User Data Database provider 
    ; 
    ; Multiple providers can be specified by separating them with commas (whitespace is unimportant) 
    ; If multiple providers are specified then if a profile is requested, each is queried until one 
    ; provides a valid profile, or until all providers have been queried. 
    ; Unfortunately the order of querying is currently undefined (it may not be the order in which 
    ; providers are specified here).  This needs to be fixed 
    ; 
    ; userDatabase_plugin = &amp;quot;OpenSim.Data.SQLite.dll&amp;quot; 
    userDatabase_plugin = &amp;quot;OpenSim.Data.MySQL.dll&amp;quot; 
    ; userDatabase_plugin = &amp;quot;OpenSim.Data.NHibernate.dll&amp;quot; ; for nhibernate 

    ; User Source NHibernate Example (DIALECT;DRIVER;CONNECTSTRING) 
    ; user_source = &amp;quot;SQLiteDialect;SqliteClientDriver;URI=file:User.db,version=3&amp;quot; 
    ; User Source MySQL example 
    user_source = &amp;quot;Data Source=localhost;Database=opensim;User ID=opensimuser;Password=opensimpassword;&amp;quot; 

    ; Specifies the location and filename of the default inventory library control file.  The path can be relative or absolute 
    ; Default is ./inventory/Libraries.xml 
    ;LibrariesXMLFile=&amp;quot;./inventory/Libraries.xml&amp;quot; 
     
    ; Specifies the location and filename of the inventory library assets control file.  The path can be relative or absolute 
    ; Setting is optional. Default is ./assets/AssetSets.xml 
    ;AssetSetsXMLFile=&amp;quot;./assets/AssetSets.xml&amp;quot; 

    dump_assets_to_file = false &lt;/pre&gt;

&lt;/div&gt;
</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
        <category>archiv:opensim:konfiguration</category>
            <pubDate>Fri, 29 Nov 2019 10:58:50 +0000</pubDate>
        </item>
        <item>
            <title>Umstellung der Datenbank</title>
            <link>http://itclive.spdns.de/wiki/archiv/opensim/konfiguration/umstellung_db?do=revisions&amp;rev=1575021530</link>
            <description>
&lt;h2 class=&quot;sectionedit1&quot; id=&quot;umstellung_der_datenbank&quot;&gt;Umstellung der Datenbank&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;Umstellung der Datenbank&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;umstellung_der_datenbank&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:1,&amp;quot;range&amp;quot;:&amp;quot;1-38&amp;quot;} --&gt;
&lt;h3 class=&quot;sectionedit2&quot; id=&quot;migration_von_sqlite_nach_mysql&quot;&gt;Migration von SQLite nach mySQL&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Mozilla Firefox Addon „&lt;a href=&quot;https://addons.mozilla.org/de/firefox/addon/5817&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;https://addons.mozilla.org/de/firefox/addon/5817&quot; rel=&quot;ugc nofollow noopener&quot;&gt;SQLite Manager&lt;/a&gt;“ installieren&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Datenbanken mit der Dateiendung .db nach .sql exportieren&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Exportierte Datenbanken in mySQL importieren&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;Migration von SQLite nach mySQL&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;migration_von_sqlite_nach_mysql&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:2,&amp;quot;range&amp;quot;:&amp;quot;39-302&amp;quot;} --&gt;
&lt;h3 class=&quot;sectionedit3&quot; id=&quot;alternative_loesung&quot;&gt;Alternative Lösung&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Zuerst alle Regionen mit save-oar regionname.oar speichern/sichern&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Mit load-oar regionname.oar die Regionen in der neuen OpenSIM-Installation importieren&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Rechte der Regionen wieder einstellen&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Damit sind allerdings nur die Regionen wiederhergestellt, die Benutzerdatenbank muß separat behandelt werden&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; mySQL installieren und eine leere Datenbank mit dem Namen „opensim“ anlegen&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; mySQL starten und als ständig im Hintergrund laufender Dienst einrichten&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; mySQL auf ein regelmäßig im Hintergrund ablaufendes Backup konfigurieren&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Konfigurationsdatei opensim.ini auf mySQL umstellen&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; OpenSIM starten und die Migrationsmeldungen im DOS-Fenster überprüfen&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; OpenSIM Inworld überprüfen ob alles normal läuft&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;Alternative L\u00f6sung&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;alternative_loesung&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:3,&amp;quot;range&amp;quot;:&amp;quot;303-1077&amp;quot;} --&gt;
&lt;h3 class=&quot;sectionedit4&quot; id=&quot;was_bringt_eine_umstellung&quot;&gt;Was bringt eine Umstellung ?&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;

&lt;p&gt;
Die SQLite-Datenbank ist für sehr viele, gleichzeitige Datenbankzugriffe ungeeignet und je nach Menge der Anfragen sogar überfordert. Das bringt früher oder später Probleme mit sich, wobei Datenverlust und Progammabstürze die Folge sein können. Die mySQL Datenbank ist nicht nur performanter als SQLite, sondern lässt sich auch speziell auf die eigenen Bedürfnisse per Konfigurationsdatei anpassen. Zusätzlich bietet mySQL im Gegensatz zu SQLite den Vorteil daß einmal gespeicherte Avatar-Outfits auch einen Server-Neustart überstehen. Bei SQLite werden nach jedem Server-Neustart alle Avatare auf den Standard-Avatar „Ruth“ zurückgesetzt und eingeloggte Benutzer müssen sich jedesmal aus dem Inventar gespeichertes Outfit neu einkleiden. Das geht zwar schnell, ist aber dennoch lästig.
&lt;/p&gt;

&lt;p&gt;
&lt;img src=&quot;http://itclive.spdns.de/wiki/lib/images/smileys/fixme.svg&quot; class=&quot;icon smiley&quot; alt=&quot;FIXME&quot; /&gt;
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;Was bringt eine Umstellung ?&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;was_bringt_eine_umstellung&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:4,&amp;quot;range&amp;quot;:&amp;quot;1078-&amp;quot;} --&gt;</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
        <category>archiv:opensim:konfiguration</category>
            <pubDate>Fri, 29 Nov 2019 10:58:50 +0000</pubDate>
        </item>
    </channel>
</rss>
