On Sat, Apr 25, 2009 at 11:15 AM, David Joyner <[email protected]> wrote: > > Again, I'm not an expert on these matters but it seems to me upon reading > "notebook?" that you need "accounts=True". Do you read it that way? >
Reading the output of notebook? is a good idea. accounts=True makes it so other users can *make* accounts. Once accounts are made, then you can definitely run the notebook with accounts=False, and those other users can still login. You address line is suspicious, by the way. It should be notebook(address="67.23.33.110", port=8000,secure=True) It sounds to me like you are *not* creating accounts correctly. Try the following: 1) start the notebook with sage: notebook(address="67.23.33.110", port=8000,secure=True, accounts=True) 2) Make the accounts using the notebook interface, i.e., clicking at the login screem on "Create a new account". 3) Then exit the notebook and restart it with sage: notebook(address="67.23.33.110", port=8000,secure=True, accounts=False) so nobody else can create accounts. William > > > On Sat, Apr 25, 2009 at 1:55 PM, Gerald Smith <[email protected]> wrote: >> Greetings! >> >> I used the following command to start up the notebook server: >> notebook(address='67.23.33.110:8000', secure=True) >> >> ThankYou, >> >> Jerry >> >> >> > >> > > > > -- William Stein Associate Professor of Mathematics University of Washington http://wstein.org --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "sage-edu" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/sage-edu?hl=en -~----------~----~----~----~------~----~------~--~---
