August 2018
Intermediate to advanced
438 pages
12h 3m
English
Let's set up some basic configurations to leverage the power of Jupyter Notebooks to do our analyses and deep learning modeling on our virtual server without having to code on the Terminal all the time. First, we need to set up SSL certificates. Let's create a new directory:
ubuntu@ip:~$ mkdir sslubuntu@ip:~$ cd sslubuntu@ip:~/ssl$
Once we are in the directory, we leverage OpenSSL to create a new SSL certificate:
ubuntu@ip:~/ssl$ sudo openssl req -x509 -nodes -days 365 -newkey rsa:1024 -keyout "cert.key" -out "cert.pem" -batch Generating a 1024 bit RSA private key......++++++...++++++writing new private key to 'cert.key'-----ubuntu@ip:~/ssl2$ lscert.key cert.pem
Now, we need to add that additional layer of ...
Read now
Unlock full access