Categories:
Cloud (204)
Entertainment (11)
Facebook (43)
General (50)
Life (31)
Programming (64)
Technology (430)
Testing (4)
Tools (488)
Twitter (5)
Wearable (26)
Web Design (44)
Collections:
Other Resources:
Setup Jupyter Server for Remote Access
How to Setup Jupyter Server for Remote Access?
✍: FYIcenter.com
If you want your Jupyter Server to be accessed remotely, 
you need to change the Jupyter Server and the Firewall configurations
as shown in this tutorial.
1. Find out the Jupyter server IP address. For example, 192.168.1.10:
fyicenter$ nmcli 
  eno1: connected to eno1
      ethernet (e1000e), 39:...:39, hw, mtu 1500
      ip4 default
      inet4 192.168.1.10/24
      route4 0.0.0.0/0
      route4 192.168.1.0/24
  lo: unmanaged
      "lo"
      loopback (unknown), 00:00:00:00:00:00, sw, mtu 65536
 
2. Start Jupyter server with the IP address and a port number 8080:
fyicenter$ jupyter notebook --no-browser --ip=192.168.1.10 --port=8080 [W LabApp] 'ip' has moved from NotebookApp to ServerApp. This config will be passed to ServerApp. Be sure to update your config before our next release. ... [I LabApp] JupyterLab application directory is /usr/local/anaconda3/share/jupyter/lab
3. Open the firewall for port 8080.
fyicenter$ sudo firewall-cmd --zone=public --add-port=8080/tcp fyicenter$ sudo firewall-cmd --runtime-to-permanent
4. Go to a remote computer and open http://192.168.1.200:8080/tree in a browser. You see the Jupyter web interface running correctly.
⇒ Jupyter Notebook Configuration JSON File
2021-11-12, 1448🔥, 0💬
Popular Posts:
What is the difference between a Web page and a filtered Web page? Word supports 2 Web page formats:...
How to log in to Microsoft Teams with a Web browser? I know that my company is using Microsoft Teams...
How to update TOC (Table Of Content) for a FrameMaker book? I have make changes in some chapters. Yo...
How to connect FileZilla to an Anonymous FTP Server? If you know the server host name, you can conne...
How to add or change the footer on a layout in PowerPoint? I want my slide footers to have the same ...