I am working on securing my Jetson with HTTPS.
I am using this documentation.
I have generated a ssl key using the following command:
openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout mykey.key -out mycert.pem
Now i want t start the Notebook server with ssl using:
jupyter notebook --certfile=mycert.pem --keyfile mykey.key
Now I get an error stating that my Server is already running.
That is logical because I am using the server to run this commands.
I want to start the notebook server with ssl on startup.
My question is:
Where is the script located used to start the server on startup, so I can replace the command and start with ssl?
I am working on securing my Jetson with HTTPS. I am using this documentation.
I have generated a ssl key using the following command:
openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout mykey.key -out mycert.pem
Now i want t start the Notebook server with ssl using:
jupyter notebook --certfile=mycert.pem --keyfile mykey.key
Now I get an error stating that my Server is already running. That is logical because I am using the server to run this commands.
I want to start the notebook server with ssl on startup. My question is: Where is the script located used to start the server on startup, so I can replace the command and start with ssl?