
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>Sun, 05 Apr 2026 23:26:35 +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>
    </channel>
</rss>
