Launching
StandAlone
Windows
Navigate to your opensim/bin directory in a command prompt and run OpenSim.exe
cd bin OpenSim.exe
Linux
Navigate to your opensim/bin directory in shell and run mono OpenSim.exe
cd bin mono OpenSim.exe
Mac OS X
Navigate to your opensim/bin directory in terminal and run mono OpenSim.exe
cd bin mono OpenSim.exe
Local Grid
Windows
cd bin OpenSim.Grid.UserServer.exe OpenSim.Grid.GridServer.exe OpenSim.Grid.AssetServer.exe OpenSim.Grid.InventoryServer.exe OpenSim.exe
Linux
For easy management of consoles, run each seperate server in it's own shell window using screen (installed during the linux instructions). Create a script called runsim.sh in the opensim/bin directory, and paste this in it:
#!/bin/sh screen -S UserServer -d -m mono OpenSim.Grid.UserServer.exe sleep 3 screen -S GridServer -d -m mono OpenSim.Grid.GridServer.exe sleep 3 screen -S AssetServer -d -m mono OpenSim.Grid.AssetServer.exe sleep 3 screen -S InventoryServer -d -m mono OpenSim.Grid.InventoryServer.exe sleep 3 screen -S OpenSim -d -m mono OpenSim.exe -gridmode=true sleep 3
Once the script has run, you can type this to view the available OpenSIM servers:
screen -r
To attach to an existing screen session type the following command followed by the number of the screen you wish to enter
screen -d -r ###
To break out of a screen session back to your original shell:
Ctrl+a (then) d
To kill all existing mono sessions, type:
sudo killall -9 mono
OSX
cd bin mono OpenSim.Grid.UserServer.exe mono OpenSim.Grid.GridServer.exe mono OpenSim.Grid.AssetServer.exe mono OpenSim.Grid.InventoryServer.exe mono OpenSim.exe








