diff options
author | David Walter Seikel | 2011-11-26 10:09:51 +1000 |
---|---|---|
committer | David Walter Seikel | 2011-11-26 10:09:51 +1000 |
commit | ebc84ad13f6d3f1911672b1a2d449d8cddf1ae2f (patch) | |
tree | b25d5ce40da4019db2b7f1552eda19d91677365c /README | |
download | IGnoble-ebc84ad13f6d3f1911672b1a2d449d8cddf1ae2f.zip IGnoble-ebc84ad13f6d3f1911672b1a2d449d8cddf1ae2f.tar.gz IGnoble-ebc84ad13f6d3f1911672b1a2d449d8cddf1ae2f.tar.bz2 IGnoble-ebc84ad13f6d3f1911672b1a2d449d8cddf1ae2f.tar.xz |
First commit.
Diffstat (limited to 'README')
-rw-r--r-- | README | 62 |
1 files changed, 62 insertions, 0 deletions
@@ -0,0 +1,62 @@ | |||
1 | Use this to create a sim that links into Infinite Grid from Linux. | ||
2 | |||
3 | I'ts been tested on Umuntu 10.04, YMMV. | ||
4 | |||
5 | Follow these steps. | ||
6 | |||
7 | Go to - | ||
8 | |||
9 | http://wiki.infinitegrid.org/index.php/Howto_Link_your_Opensim_region_to_Infinite_Grid | ||
10 | |||
11 | and follow the directions to create an admin user account. You can skip | ||
12 | that bit if you already have a suitable user with sudo access. | ||
13 | |||
14 | Note that these scripts pretty much follow that above wiki description, | ||
15 | with some exceptions. REST is used for console access, instead of | ||
16 | screen. The configuration information per sim has been rearranged so | ||
17 | that there is only ONE copy of the OpenSim installation. | ||
18 | |||
19 | Next you need to figure out what password you want to use for OpenSims | ||
20 | access to the database. We will call this "DatabasePassword". Run the | ||
21 | following script - | ||
22 | |||
23 | ./install_opensim.sh DatabasePassword | ||
24 | |||
25 | This will do most of the work fo you, except for creating sims. A | ||
26 | separate script is here for sim creation, you can use it to create many | ||
27 | sims. You will need - | ||
28 | |||
29 | Your host name, or it could be your IP, we will use "sims.example.net". | ||
30 | |||
31 | A name for your sim, we will use "My new sim". It should be unique on | ||
32 | the grid. | ||
33 | |||
34 | A location for your sim, we will use "1234,5678". You can use the | ||
35 | Infinite Grid web based map to poke around and find a good location. | ||
36 | Choose an empty spot. | ||
37 | |||
38 | Optionally, you might need your IP address if you are creating more than | ||
39 | one sim, we will use "1.2.3.4". | ||
40 | |||
41 | Once you have all that information sorted out, run this script if ONLY | ||
42 | hosting a single sim on this computer - | ||
43 | |||
44 | ./create_sim.sh "My new sim" "1234,5678" "sims.example.net" | ||
45 | |||
46 | Or this if you plan on running more than one sim - | ||
47 | |||
48 | ./create_sim.sh "My new sim" "1234,5678" "sims.example.net" "1.2.3.4" | ||
49 | |||
50 | No you can go to /opt/opensim/config/sim01 and run the following script | ||
51 | to start it up - | ||
52 | |||
53 | ./start-sim-in-rest | ||
54 | |||
55 | You will see the REST console. You can run the REST console again by | ||
56 | running that command once more. | ||
57 | |||
58 | Once it's all tested, you can use this to finish things off (back in | ||
59 | this directory) - | ||
60 | |||
61 | ./go_live.sh | ||
62 | |||