Magnus wrote: > My problem is that our technicians (sp?) have succeded in installing > sage at an internal server at our school, but we have found no > information about how to create accounts other than the one admin > account that is created automaticly. Does anyone know any solution to > this problem?
The Sage command line environment is first entered by executing the "sage" command in a shell window: [EMAIL PROTECTED] ~ $ sage ---------------------------------------------------------------------- | SAGE Version 2.8.13, Release Date: 2007-11-21 | | Type notebook() for the GUI, and license() for information. | ---------------------------------------------------------------------- sage: At the sage command prompt, execute a line like the following: sage: notebook(address="206.21.94.60", port=9000, secure=True, accounts=True) And something similar to the following will be displayed: ****************************************************** * * * Open your web browser to https://206.21.94.60:9000 * * * ****************************************************** There is an admin account. If you do not remember the password, quit the notebook and type notebook(reset=True). Removing stale pidfile /home/sage/sage_notebook/twistd.pd 2008/01/09 11:08 -0500 [-] Log opened. 2008/01/09 11:08 -0500 [-] twistd 2.5.0 (/opt/sage-2.8.13-i686-Linux/local/bin/python 2.5.1) starting up <snip> For "address", put the IP address of the server machine that sage is running on. The notebook server defaults to port 8000 but this port can be set using the "port" parameter. Now, the "accounts=True" parameter is probably what you are interested in. What it will do is to add a link to the opening page of the notebook which will allow users to create accounts. Point a browser to the notebook server using the selected port number and the opening page will be shown: https://xxx.xxx.xxx.xxx:9000 http://sage.math.washington.edu/home/tkosan/misc/opening_page_with_arrow.png If "secure=True" was selected, remember to use https instead of just http to access the notebook. Hope this helps :-) Ted --~--~---------~--~----~------------~-------~--~----~ To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/sage-support URLs: http://sage.math.washington.edu/sage/ and http://sage.scipy.org/sage/ -~----------~----~----~----~------~----~------~--~---