[email protected] wrote: > Thanks for all the security-related comments and suggestions. > Very helpful, and very appreciated. > > Another question: > We'd like the "sage: notebook(address="",open_viewer=False, secure = > True) " > to be executed on boot-up so that it's "there" when anyone wants it. > Any suggestions on how? /etc/init.d/{script}? > > Thanks, > -Richard Vaughn
I run my first 'public' server yesterday, so my experience is pretty small, but I suspect something like a startup script with su - sage /homes/sage/sage-4.2/sage -notebook address='' server_pool=['sa...@localhost'] ulimit='-v 500000' accounts=True should start the process as non-root. However, there are too many quotes in that command - I need to sort out exactly how to specify those things on the command line. There might needs to be some double quotes/ quotes removed / or similar. Whatever you do, don't start as root. That is what my 'su' bit does above - switches to another user. dave -- 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-support URL: http://www.sagemath.org
