Linux的jupyter lab启动,无法从远程的浏览器中访问
防火墙问题,关闭防火墙
在网上搜了好长一段时间的解决方案,关于降包的版本都试过了,不是版本兼容的问题。
我遇到的情况是:服务器端的浏览器可以打开jupyterlab,但是从远程机器访问服务器中的jupyterlab时,始终打不开jupyterlab,毫无响应
关闭防火墙操作
CentOS7
关闭防火墙
systemctl stop firewalld.service #停止firewall
systemctl disable firewalld.service #禁止firewall开机启动
开启端口
firewall-cmd --zone=public --add-port=80/tcp --permanent
查看防火墙状态
systemctl status firewalld