Ask Your Question
2

disable sage notebook password

asked 13 years ago

sagefan gravatar image

I find it annoying to have to type a password to access my local sage notebook worksheets. Is there any way to disable the password? It makes no sense for my local installation.

Preview: (hide)

3 Answers

Sort by » oldest newest most voted
2

answered 13 years ago

Kelvin Li gravatar image

Try:

sage: notebook(require_login=False)

at a Sage prompt, or:

$ sage --notebook require_login=False

from a terminal. This is behavior documented in the docstring:

sage: notebook?

See the third item under the "EXAMPLES" section.

Preview: (hide)
link

Comments

Thanks, it works!

sagefan gravatar imagesagefan ( 13 years ago )
2

answered 12 years ago

bloft gravatar image

After resetting the password, i tried

sage: notebook(require_login=False)

and received an error.

It was then suggested that I try

sage: notebook(automatic_login=True)

in order to automatically login as admin.

Preview: (hide)
link

Comments

Yes, the interface to the notebook changed a few releases ago, so that the accepted answer is no longer true. Doing `sage: notebook?` still will give you the documentation one needs, luckily.

kcrisman gravatar imagekcrisman ( 12 years ago )
0

answered 11 years ago

using sage notebook 5.11

sage -c "notebook(secure=False, automatic_login=True)"

only landed me at the notebook's login page (so i initially thought the feature only by-passed some internal 'server'), but on trying another browser, i discovered that explicitly setting the browser via the SAGE_BROWSER environment variable gets this working as i'd hoped (i.e. straight through to the worksheet selection/create page and logged-in as 'admin')

SAGE_BROWSER=firefox sage -c "notebook(secure=False, automatic_login=True)"

possibly a bug then..

Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 13 years ago

Seen: 2,486 times

Last updated: Aug 24 '13