aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDavid Walter Seikel2011-11-27 19:36:31 +1000
committerDavid Walter Seikel2011-11-27 19:36:31 +1000
commit5301bfc213ea992abcc8efc7b59bbe0b3773813d (patch)
tree590cc968a31d124b10b43b748ce700726c84b4fd
parentAdd my TODO notes. (diff)
downloadIGnoble-5301bfc213ea992abcc8efc7b59bbe0b3773813d.zip
IGnoble-5301bfc213ea992abcc8efc7b59bbe0b3773813d.tar.gz
IGnoble-5301bfc213ea992abcc8efc7b59bbe0b3773813d.tar.bz2
IGnoble-5301bfc213ea992abcc8efc7b59bbe0b3773813d.tar.xz
Adjust the instructions to match the latest scripts.
-rw-r--r--README28
1 files changed, 13 insertions, 15 deletions
diff --git a/README b/README
index 8636f21..e8388fa 100644
--- a/README
+++ b/README
@@ -1,6 +1,7 @@
1Use this to create a sim that links into Infinite Grid from Linux. 1Use this to create a sim that links into Infinite Grid from Linux.
2 2
3It's only been tested on Ubuntu 10.04, YMMV. 3It's only been tested on Ubuntu 10.04, YMMV. This is also a WIP, use it
4at your own risk.
4 5
5Follow these steps. 6Follow these steps.
6 7
@@ -12,9 +13,8 @@ and follow the directions to create an admin user account. You can skip
12that bit if you already have a suitable user with sudo access. 13that bit if you already have a suitable user with sudo access.
13 14
14Note that these scripts pretty much follow that above wiki description, 15Note that these scripts pretty much follow that above wiki description,
15with some exceptions. REST is used for console access, instead of 16with some exceptions. The configuration information per sim has been
16screen. The configuration information per sim has been rearranged so 17rearranged so that there is only ONE copy of the OpenSim installation.
17that there is only ONE copy of the OpenSim installation.
18 18
19Next you need to figure out what password you want to use for OpenSims 19Next you need to figure out what password you want to use for OpenSims
20access to the database. We will call this "DatabasePassword". Run the 20access to the database. We will call this "DatabasePassword". Run the
@@ -22,7 +22,7 @@ following script -
22 22
23./install_opensim.sh DatabasePassword 23./install_opensim.sh DatabasePassword
24 24
25This will do most of the work fo you, except for creating sims. A 25This will do most of the work for you, except for creating sims. A
26separate script is here for sim creation, you can use it to create many 26separate script is here for sim creation, you can use it to create many
27sims. You will need - 27sims. You will need -
28 28
@@ -35,24 +35,20 @@ A location for your sim, we will use "1234,5678". You can use the
35Infinite Grid web based map to poke around and find a good location. 35Infinite Grid web based map to poke around and find a good location.
36Choose an empty spot. 36Choose an empty spot.
37 37
38Optionally, you might need your IP address if you are creating more than 38Once you have all that information sorted out, run this script -
39one sim, we will use "1.2.3.4".
40
41Once you have all that information sorted out, run this script if ONLY
42hosting a single sim on this computer -
43 39
44./create_sim.sh "My new sim" "1234,5678" "sims.example.net" 40./create_sim.sh "My new sim" "1234,5678" "sims.example.net"
45 41
46Or this if you plan on running more than one sim - 42Or this if you want to override the detected IP address -
47 43
48./create_sim.sh "My new sim" "1234,5678" "sims.example.net" "1.2.3.4" 44./create_sim.sh "My new sim" "1234,5678" "sims.example.net" "1.2.3.4"
49 45
50Now you can go to /opt/opensim/config/sim01 and run the following script 46Now you can go to /opt/opensim/config/sim01 and run the following script
51to start it up - 47to start it up -
52 48
53./start-sim-in-rest 49./start-sim
54 50
55You will see the REST console. You can run the REST console again by 51You will see the screen console. You can run the screen console again by
56running that command once more. 52running that command once more.
57 53
58Once it's all tested, you can use this to finish things off (back in 54Once it's all tested, you can use this to finish things off (back in
@@ -60,6 +56,8 @@ this directory) -
60 56
61./go_live.sh 57./go_live.sh
62 58
59That last command has never been tested. lol
60
63 61
64NOTES - 62NOTES -
65 63
@@ -68,6 +66,6 @@ are running one instance of OS for each sim though, as this prevents one
68sim crashing from bringing down the others. OS however really wants to 66sim crashing from bringing down the others. OS however really wants to
69write data to directories within it's own bin directory. I'm not at all 67write data to directories within it's own bin directory. I'm not at all
70certian if that data can be shared. For the same reason, so far I've 68certian if that data can be shared. For the same reason, so far I've
71not been able to get to thepoint where we can make the OS directory read 69not been able to get to the point where we can make the OS directory
72only. This complicates things during upgrades. 70read only. This complicates things during upgrades.
73 71