diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/configuration.html | 130 | ||||
-rw-r--r-- | doc/index.html | 13 | ||||
-rw-r--r-- | doc/scripts.html | 113 | ||||
-rw-r--r-- | doc/web_pages.html | 4 |
4 files changed, 251 insertions, 9 deletions
diff --git a/doc/configuration.html b/doc/configuration.html index 9844414..0f42529 100644 --- a/doc/configuration.html +++ b/doc/configuration.html | |||
@@ -3,6 +3,134 @@ | |||
3 | <head> | 3 | <head> |
4 | </head> | 4 | </head> |
5 | <body bgcolor="black" text="white" alink="red" link="blue" vlink="purple"> | 5 | <body bgcolor="black" text="white" alink="red" link="blue" vlink="purple"> |
6 | <p> </p> | 6 | |
7 | <p>opensim-SC uses the same configurations as <a | ||
8 | href="http://opensimulator.org/wiki/Main_Page">OpenSim</a>, with some | ||
9 | small changes, so please refer to their <a | ||
10 | href="http://opensimulator.org/wiki/Configuration">documentation</a>. | ||
11 | Only the differences will be detailed here.</p> | ||
12 | |||
13 | <p>OpenSim ships with some pre-compiled executables and libraries, plus | ||
14 | other files in it's own bin/ directory, and wants to write the rest of | ||
15 | it's files there as well. Some existing configuration options let you | ||
16 | move some of those writable areas out of the tree, but not all. | ||
17 | opensim-SC tries to move all writable stuff and configuration out of | ||
18 | tree, to make updates easier. InstallItAll.sh builds this structure in | ||
19 | /opt/opensim_SC, and copies itself to /opt/opensim_SC/opensim-SC.</p> | ||
20 | |||
21 | <p>The two main configuration files are | ||
22 | /opt/opensim_SC/opensim-SC/bin/Robust.ini and | ||
23 | /opt/opensim_SC/opensim-SC/bin/OpenSimDefaults.ini. You should not modify | ||
24 | those. They include files from | ||
25 | /opt/opensim_SC/opensim-SC/bin/config-include, which you should also not | ||
26 | modify. Instead there are various directories and config files in | ||
27 | /opt/opensim_SC/config where you can over ride the configuration options | ||
28 | you want to change.</p> | ||
29 | |||
30 | <h1>/opt/opensim_SC/config/config.ini</h1> | ||
31 | |||
32 | <p>This will start as a copy of one of the | ||
33 | /opt/opensim_SC/opensim-SC/bin/config-include/config_*.ini files. Copy | ||
34 | config_localhost.ini if you want to run your own grid, or one of the | ||
35 | others if you want to connect to IG or MG. It is used by both ROBUST and | ||
36 | by sims. It must be NOT world readable, as it contains your database | ||
37 | login details.</p> | ||
38 | |||
39 | <p>By default this file includes two sections. [Paths] and [Const], but | ||
40 | you can add more sections in this file if you need to override those | ||
41 | sections from the configuration files in the bin/ directory.</p> | ||
42 | |||
43 | <p>[Paths] is the paths to the various movable directories, relative to | ||
44 | the /opt/opensim_SC/opensim-SC/bin/ directory. | ||
45 | |||
46 | <ul> | ||
47 | <li>AssetsPath - where your assets are stored.</li> | ||
48 | <li>BackupPath - where IAR and OAR backup files are created.</li> | ||
49 | <li>CachePath - the directory that holds various caches.</li> | ||
50 | <li>ConfigPath - this /opt/opensim_SC/config/ directory that we are describing.</li> | ||
51 | <li>DbPath - a directory with some small statistics databases.</li> | ||
52 | <li>LogPath - where the logs and console history are kept.</li> | ||
53 | <li>WebPath - where the various web pages are served from.</li> | ||
54 | </ul> | ||
55 | |||
56 | <p>[Const] is various constants used in the rest of the configuration | ||
57 | files, so you can define these here once.</p> | ||
58 | |||
59 | <ul> | ||
60 | <li>MOTD - the message that is shown to people when they log on.</li> | ||
61 | <li>GridName - the name of the grid.</li> | ||
62 | <li>ShortGridName - the short name of the grid, usually the initials of GridName.</li> | ||
63 | <li>BaseHostName - a HTTP URL that is used as the base of all other URLs.</li> | ||
64 | <li>HostName - the domain name of your grid.</li> | ||
65 | <li>BaseURL - built from BaseHostName usually.</li> | ||
66 | <li>GridURL - built from BaseHostName usually.</li> | ||
67 | <li>SSLURL - built from HostName usually.</li> | ||
68 | <li>PublicPort - public port used by ROBUST services.</li> | ||
69 | <li>PrivatePort - private port used by ROBUST services.</li> | ||
70 | <li>PublicSSLPort - public port used by ROBUST services in SSL mode.</li> | ||
71 | <li>AssetServerPort - public port used by the ROBUST asset service.</li> | ||
72 | <li>DataProvider - used to select between the various SQL backends, though opensim-SC only supports MariaDB / MySQL.</li> | ||
73 | <li>ConnectionString - the details of how to connect to your SQL backend. This contains credentials that need to be protected from others reading them.</li> | ||
74 | </ul> | ||
75 | |||
76 | <p>NOTE - though SSL is mentioned above, SSL is not well supported in | ||
77 | OpenSims own web server. They wrote their own, the SSL parts are not | ||
78 | well tested, being rarely used. Probably best to not use SSL now. In | ||
79 | the next major version of opensim-SC I intend to use an external web | ||
80 | server, and shift things over to it. Lighttpd is the likely choice.</p> | ||
81 | |||
82 | <h1>/opt/opensim_SC/config/ROBUST/RobustExtra.ini</h1> | ||
83 | |||
84 | <p>This is where you would override ROBUST specific configuration options. By default it will be empty.</p> | ||
85 | |||
86 | <h1>/opt/opensim_SC/config/simXX/ThisSim.ini</h1> | ||
87 | |||
88 | <p>For each sim you need to specify certain options, and you can override | ||
89 | others. /opt/opensim_SC/config/sim_skeleton/ThisSim.ini is a template | ||
90 | used by the create_sim script to create this file. Newer versions of | ||
91 | create_sim might give this file the name of the sim, My_New_Sim.ini.</p> | ||
92 | |||
93 | <p>The "SIM_*" bits get replaced with actual information for each sim. | ||
94 | It has it's own [Const] section, which only contains mysim, the number of | ||
95 | this sim. The [Startup] section defines various file locations. The | ||
96 | [Network] section defines the public port for this sim.</p> | ||
97 | |||
98 | <p>OpenSim had the [Region] section in different files, in two | ||
99 | different formats, instead opensim-SC includes that info here so it's all | ||
100 | in one place per sim. RegionName is the name of your sim, the rest are | ||
101 | described in OpenSims <a | ||
102 | href="http://opensimulator.org/wiki/Configuring_Regions">Configuring | ||
103 | Regions</a> page.</p> | ||
104 | |||
105 | <p>The [Performance] section is new to opensim-SC. It includes one of the | ||
106 | /opt/opensim_SC/opensim-SC/bin/config-include/Sim*.ini files that give | ||
107 | you a choice of performance trade offs.</p> | ||
108 | |||
109 | <h1>New options.</h1> | ||
110 | |||
111 | <p>There have been some additional options added to support new features. Some have been mentioned above.</p> | ||
112 | |||
113 | <ul> | ||
114 | <li>[AuthorizationService]</li> | ||
115 | <ul> | ||
116 | <li>DefaultRegionAccess - Set the default access restriction for any sim not otherwise mentioned in this section.</li> | ||
117 | </ul> | ||
118 | <li>[Groups]</li> | ||
119 | <ul> | ||
120 | <li>AddDefaultGroup - automatically add any members of your grid to this | separated list of groups.</li> | ||
121 | <li>AddHGDefaultGroup_othergrid.com - same as above, but for hypergrid visitors from a specific grid.</li> | ||
122 | </ul> | ||
123 | <li>[GodNames]</li> | ||
124 | <ul> | ||
125 | <li>FirstNames - similar to the other GodNames options, but this is a list of first names that designate gods for viewers. Note that viewers may not support this.</li> | ||
126 | </ul> | ||
127 | </ul> | ||
128 | |||
129 | <h1>Removed options.</h1> | ||
130 | |||
131 | <p>Some options have been removed. Mostly limitations, or useless cruft. | ||
132 | You wont miss them. In one instance a viewer bug that had been fixed a | ||
133 | decade ago, was still being forbidden in OpenSim.</p> | ||
134 | |||
7 | </body> | 135 | </body> |
8 | </html> | 136 | </html> |
diff --git a/doc/index.html b/doc/index.html index b2043e4..ad4352d 100644 --- a/doc/index.html +++ b/doc/index.html | |||
@@ -20,10 +20,11 @@ Second Life viewers.</p> | |||
20 | 20 | ||
21 | <h1>What is SledjHamr?</h1> | 21 | <h1>What is SledjHamr?</h1> |
22 | 22 | ||
23 | <p>opensim-SC is part of the SledjHamr project. SledjHamr is a rewrite from | 23 | <p>opensim-SC is part of the SledjHamr project. SledjHamr will be a |
24 | scratch of Second Life (SL) / OpenSim (OS) style 3D online virtual world | 24 | rewrite from scratch of Second Life (SL) / OpenSim (OS) style 3D online |
25 | client / server. The plan is to use OS server and SL clients as crutches, | 25 | virtual world client / server. The plan is to use OS server and SL |
26 | when a bit of SledjHamr is ready, it replaces the matching bit in OS/SL.</p> | 26 | clients as crutches, when a bit of SledjHamr is ready, it replaces the |
27 | matching bit in OS/SL.</p> | ||
27 | 28 | ||
28 | <h2>SledjHamr - tearing down the garden walls.</h2> | 29 | <h2>SledjHamr - tearing down the garden walls.</h2> |
29 | 30 | ||
@@ -89,9 +90,9 @@ INSTALL.md for installation details.</p> | |||
89 | 90 | ||
90 | <p>The <a href="scripts.html">scripts are documented here</a>.</p> | 91 | <p>The <a href="scripts.html">scripts are documented here</a>.</p> |
91 | 92 | ||
92 | <p>The <a href="configuration.html">new configuration setup and options are documented here</,>.</p> | 93 | <p>The <a href="configuration.html">new configuration setup and options are documented here</a>.</p> |
93 | 94 | ||
94 | <p>The <a href="wab_pages.html">example web pages are documented here</a>.</p> | 95 | <p>The <a href="web_pages.html">example web pages are documented here</a>.</p> |
95 | 96 | ||
96 | <p> </p> | 97 | <p> </p> |
97 | <p> </p> | 98 | <p> </p> |
diff --git a/doc/scripts.html b/doc/scripts.html index 55b8d26..8551a79 100644 --- a/doc/scripts.html +++ b/doc/scripts.html | |||
@@ -3,6 +3,119 @@ | |||
3 | <head> | 3 | <head> |
4 | </head> | 4 | </head> |
5 | <body bgcolor="black" text="white" alink="red" link="blue" vlink="purple"> | 5 | <body bgcolor="black" text="white" alink="red" link="blue" vlink="purple"> |
6 | <p>There are various scripts included, mostly Bash shell scripts.</p> | ||
7 | |||
8 | <h1>opensim-SC/BuildIt.sh</h1> | ||
9 | <p>This script will compile, or recompile the entire system.</p> | ||
10 | |||
11 | <h1>opensim-SC/InstallItAll.sh</h1> | ||
12 | |||
13 | <p>Installs everything on a Debian like operating system. You will need | ||
14 | to know your root/sudo password and your MariaDB root password, though if | ||
15 | MariaDB isn't installed, it will be installed. Note that some recent | ||
16 | versions of MariaDB want to be passwordless for root.</p> | ||
17 | |||
18 | <h1>opensim-SC/TestIt.sh</h1> | ||
19 | <p>Runs unit tests on opensim-SC.</p> | ||
20 | <h1>opensim-SC/nant-color</h1> | ||
21 | <p>Obsolete since Debian removed nant, but used to be part of the build system.</p> | ||
22 | <h1>opensim-SC/runprebuild.bat and opensim-SC/runprebuild.sh</h1> | ||
23 | <p>Parts of the build system.</p> | ||
24 | <h1>opensim-SC/example/start.sh</h1> | ||
25 | <p>An example script that runs a specific sim.</p> | ||
26 | <h1>opensim-SC/scripts/backup-grid.sh</h1> | ||
27 | <p>Backup the entire grid into gitAR archive files, which are like IAR and OAR files, only with git info in them, and compressed better.</p> | ||
28 | <h1>opensim-SC/scripts/backup-inventories.sh</h1> | ||
29 | <p>Backup inventories of anyone that has logged on in since the last time this was run.</p> | ||
30 | <h1>opensim-SC/scripts/backup-inventory</h1> | ||
31 | <p>Backup a single accounts inventory. It's a symlink to start-sim, which figures out what to do based on the name it is called as.</p> | ||
32 | <h1>opensim-SC/scripts/backup-sims.sh</h1> | ||
33 | <p>Backup all currently running sims.</p> | ||
34 | <h1>opensim-SC/scripts/common.sh</h1> | ||
35 | <p>Common data and functions for the other scripts.</p> | ||
36 | <h1>opensim-SC/scripts/fix_some_assets.pl</h1> | ||
37 | <p>An old script to fix some problems caused by a bug in OpenSim. Not sure it's needed anymore, or even if it'll work. Probably best to not use it.</p> | ||
38 | <h1>opensim-SC/scripts/gitAR.sh</h1> | ||
39 | <p>Script for dealing with gitARs, though not meant to be used by users.</p> | ||
40 | <h1>opensim-SC/scripts/show-console</h1> | ||
41 | <p>Show the tmux consoles.</p> | ||
42 | |||
43 | <h1>opensim-SC/scripts/start-sim</h1> | ||
44 | |||
45 | <p>Start / stop sims, backup inventories / sims. This script does | ||
46 | different things depending on where it is called from, and the name it is | ||
47 | called as. It has afew options you can pass to it on the command line.</p> | ||
48 | |||
49 | <ul> | ||
50 | <li>-a - Used internally as part of the "start up everything" mentioned below.</li> | ||
51 | <li>-d X - Define a delay to wait between sims when starting up everything, the default is 60 seconds.</li> | ||
52 | <li>-q - Don't show the tmux console os start up.</li> | ||
53 | <li>-w - Wait until the "INITIALIZATION COMPLETE FOR " line shows in the console before continuing.</li> | ||
54 | </ul> | ||
55 | |||
56 | <h2>Called as backup-inventory</h2> | ||
57 | <p>Backs up the inventory of the user specified in the arguments to an .iar file and updates the _gitIAR.tar.xz file.</p> | ||
58 | |||
59 | <pre> ./backup-inventory Avatar Name</pre> | ||
60 | |||
61 | <h2>Called as backup-sim from config/simXX</h2> | ||
62 | <p>Backs up the sim to an .oar and updates the _gitOAR.tar.xz file.</p> | ||
63 | |||
64 | <h2>Called as start-sim from config/ROBUST</h2> | ||
65 | <p>Starts up ROBUST if it is called from the config directory holding the ROBUST configuration.</p> | ||
66 | |||
67 | <h2>Called as start-sim from config/simXX</h2> | ||
68 | <p>Starts up the sim if it is called from the config directory holding the sim configuration.</p> | ||
69 | |||
70 | <h2>Called as start-sim from opensim-SC/scripts</h2> | ||
71 | <p>Will start up everything.</p> | ||
72 | |||
73 | <h2>Called as start-sim from opensim-SC/bin</h2> | ||
74 | <p>Used internally by the "start up everything" process to start up the sims. It assumes that ROBUST was recently started.</p> | ||
75 | |||
76 | <h2>Called as stop-sim from config/ROBUST</h2> | ||
77 | <p>Stops ROBUST if it is called from the config director holding the ROBUST configuration.</p> | ||
78 | |||
79 | <h2>Called as stop-sim from config/simXX</h2> | ||
80 | <p>Stops the sim if it is called from the config director holding the sim | ||
81 | configuration. It gives users on the sim a couple of warnings, waits a | ||
82 | while, then shuts down the sim.</p> | ||
83 | |||
84 | <h1>opensim-SC/scripts/install/create_sim.sh</h1> | ||
85 | <p>Create a sim. Ther are several optional arguments. If an argument is missing or blank, a default is used.</p> | ||
86 | |||
87 | <ul> | ||
88 | <li>"sim name" - The name of the sime you want, the default is "No name sim XXX" where XXX is a random number.</li> | ||
89 | <li>1234,1234 - The map location of the sim, the default is some random location.</li> | ||
90 | <li>256 - The size of the sim, the default is 256 x 256 meters.</li> | ||
91 | </ul> | ||
92 | |||
93 | <pre> ./create_sim "My Dobule Sized Sim", 1234,1234 512</pre> | ||
94 | |||
95 | <h1>opensim-SC/scripts/install/go_live.sh</h1> | ||
96 | |||
97 | <p>Installs the monit config files. Note that a recent version of Monit | ||
98 | seems to have issue with this, that I haven't tracked down yet. Monit | ||
99 | isn't needed most of the time, and I want to replace it with something | ||
100 | internal in the next major release.</p> | ||
101 | |||
102 | <h1>opensim-SC/scripts/install/group_migrate.sql</h1> | ||
103 | <p>An obsolete SQL script for migrating to OS groups.</p> | ||
104 | <h1>opensim-SC/scripts/install/opensim-monit.conf</h1> | ||
105 | <p>The template monit config file.</p> | ||
106 | |||
107 | <h1>opensim-SC/scripts/install/opensim.tmux.conf</h1> | ||
108 | |||
109 | <p>The tmux config file. Note that tmux has a tendency to change how | ||
110 | their config files work from one version to the next. It would be wise | ||
111 | to test this before trying to use it.</p> | ||
112 | |||
113 | <h1>opensim-SC/scripts/install/secure.sh</h1> | ||
114 | |||
115 | <p>Script to properly set ownership and permissions for files and | ||
116 | directories in opensim-SC. Once you have a lot of assets, this wil take | ||
117 | along time. It is called from InstallItAll.sh</p> | ||
118 | |||
6 | <p> </p> | 119 | <p> </p> |
7 | </body> | 120 | </body> |
8 | </html> | 121 | </html> |
diff --git a/doc/web_pages.html b/doc/web_pages.html index 4ea5aa3..6a76b00 100644 --- a/doc/web_pages.html +++ b/doc/web_pages.html | |||
@@ -15,9 +15,9 @@ and PublicPort to be.</p> | |||
15 | grid. There are also a few PNG images that you can replace.</p> | 15 | grid. There are also a few PNG images that you can replace.</p> |
16 | 16 | ||
17 | <h1>about.html</h1> | 17 | <h1>about.html</h1> |
18 | <p>The web page grid managers will show as "web site".</p> | 18 | <p>The web page grid managers will show as "web site". I don't think any viewers actually show or link to this.</p> |
19 | <h1>help.html</h1> | 19 | <h1>help.html</h1> |
20 | <p>The web page grid managers will show as "support URL".</p> | 20 | <p>The web page grid managers will show as "support URL". I don't think any viewers actually show or link to this.</p> |
21 | <h1>loginpage.html</h1> | 21 | <h1>loginpage.html</h1> |
22 | <p>This is the web page shown in viewers when they pick your grid to log onto.</p> | 22 | <p>This is the web page shown in viewers when they pick your grid to log onto.</p> |
23 | <h1>password_help.html</h1> | 23 | <h1>password_help.html</h1> |