aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Server/Base/ServicesServerBase.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-05-19Dump OpenSim 0.9.0.1 into it's own branch.onefang1-30/+172
2019-05-19Stop it from not stopping.root1-2/+3
2016-11-04Attempt to move everything writable, and the configs, out of the bin directory.David Walter Seikel1-1/+1
Log configs are still in the bin directory.
2016-11-03Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel1-42/+32
2012-11-22Factor out command script code.Justin Clark-Casey (justincc)1-39/+0
This also allows comments in command scripts (lines starting with ;, # or //) to be used across all servers
2012-11-22Make "config show/set/get/save" console commands available on all serversJustin Clark-Casey (justincc)1-14/+5
2012-11-22Factor out common pid file creation and removal code.Justin Clark-Casey (justincc)1-22/+3
Log path at which pid file is created or reason for failure to create.
2012-11-22Make "set log level" command available across all serversJustin Clark-Casey (justincc)1-1/+0
2012-11-22Make "show info" command available across all serversJustin Clark-Casey (justincc)1-42/+1
This helpfully lists version information, startup location and console log level
2012-11-22Factor out common registration of "show uptime" commandJustin Clark-Casey (justincc)1-5/+2
2012-11-22factor out common HandleShow code for "show uptime"Justin Clark-Casey (justincc)1-16/+2
2012-11-22refactor: Factor out copy/pasted server uptime report codeJustin Clark-Casey (justincc)1-23/+4
2012-10-03Add modular configuration for Robust connectorsBlueWall1-0/+8
We can provide modular ini for connectors... look for our configuration in the following places... 1) in the default ini/-inifile 2) in the named file (ConfigName) located in the configured directory (see Robust[.HG].ini [Start] section for ConfigDirectory) 3) in the repository named in the connector (ConfigURL) In this case, the file will be written into the configured directory with the specified See example connector/service @ https://github.com/BlueWall/SlipStream for testing.
2012-09-06pasting in show uptime codeSignpostMarv1-0/+41
Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
2012-07-11Where possible, use the system Encoding.ASCII and Encoding.UTF8 rather than ↵Justin Clark-Casey (justincc)1-4/+4
constructing fresh copies. The encodings are thread-safe and already used in such a manner in other places. This isn't done where Byte Order Mark output is suppressed, since Encoding.UTF8 is constructed to output the BOM.
2012-03-08Change "help" to display categories/module list then "help ↵Justin Clark-Casey (justincc)1-4/+4
<category/module>" to display commands in a category. This is to deal with the hundred lines of command splurge when one previously typed "help" Modelled somewhat on the mysql console One can still type help <command> to get per command help at any point. Categories capitalized to avoid conflict with the all-lowercase commands (except for commander system, as of yet). Does not affect command parsing or any other aspects of the console apart from the help system. Backwards compatible with existing modules.
2012-01-24Make errors reported by OpenSim when it halts because it can't find certain ↵Justin Clark-Casey (justincc)1-4/+3
config sections or files a bit more user friendly.
2011-11-02Catch any exceptions exiting the top of the robust console, as we already do ↵Justin Clark-Casey (justincc)1-1/+8
for the main simulator. This prevents issues such as transient mono console problems from crashing the server.
2011-10-25Make OpenSim.Framework.Servers.HttpServer rely on OpenSim.Framework instead ↵Justin Clark-Casey (justincc)1-1/+2
of the other way around. This is necessary so that code in HttpServer can use framework facilities such as the thread watchdog for monitoring purposes. Doing this shuffle meant that MainServer was moved into OpenSim/Framework/Servers Also had to make OpenSim.Framework.Console rely on OpenSim.Framework rather than the other way around since it in turn relies on HttpServer MainConsole and some new interfaces had to be moved into OpenSim/Framework to allow this. This can be reverted if parts of OpenSim.Framework stop relying on console presence (cheifly RegionInfo)
2010-10-04Formatting cleanup.Jeff Ames1-1/+1
2010-10-01adding -logconfig to Robust.exeBlueWall1-6/+20
Adding -logconfig to Robust.exe. will still process the -logfile option, as before. No options given, the value "Robust.log" will be written in the ./bin directory
2010-06-27Add command-script to the Robust consoleRobert Adams1-0/+41
2010-06-08Make the text mode remote console really work. It can now be used to sendMelanie Thielker1-0/+5
multi-word commands with proper quoting, handles arguments with spaces and allows interactive use, e.g. user creation.
2009-11-30Add "shutdown" command to ROBUST shellMelanie1-0/+4
2009-08-19Add rest console support to the user server. Will ask new questions atMelanie1-0/+28
startup. To use, run it normally once, answering the questions, then run again with -console=rest. Also now supports -console=basic for a console that reads stdin
2009-07-31Make ROBUST not hang on exit in recent Mono versions. Make the logfile configMelanie Thielker1-3/+7
setting/commandline option actually work.
2009-07-07Make a renamed OpenSim.Server.exe use the corret ini file, e.g.Melanie Thielker1-5/+5
renaming OpenSim.Server.exe to OpenSim.AssetServer.exe will cause OpenSim.AssetServer.ini to be read by that instance. This facilitates legacy usage
2009-07-07Update prompt and make it settable from within the ini fileMelanie Thielker1-0/+2
2009-06-08That didn't quite work. Trying this instead -- prompt given in the cmd line.diva1-2/+8
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames1-1/+1
LICENSE.txt.
2009-05-20Remove the pre-log4net, discrete output methods from the consolesMelanie Thielker1-0/+5
2009-05-18Nonowrking intermadiate commit,, DO NOT USEMelanie Thielker1-1/+1
2009-05-18Move the connectors under services for reasons of application logic. RemoveMelanie Thielker1-1/+4
the user server skeleton in preparation for introducing a generic server
2009-05-05Plumb the new server connector logicMelanie Thielker1-0/+5
2009-05-05Committing the HTTP (REST) server baseMelanie Thielker1-1/+1
2009-05-05Committing the new server baseMelanie Thielker1-0/+225