美文网首页
服务器重启后开放jupyter端口,固定登录端口和ip,常开

服务器重启后开放jupyter端口,固定登录端口和ip,常开

作者: byejya | 来源:发表于2022-09-05 15:39 被阅读0次

    之前打开过的8787(r studio server)和没打开的8899(jupyter)端口对比明显


    image.png
    firewall-cmd --zone=public --add-port=8899/tcp --permanent ##(–permanent永久生效,没有此参数重启后失效)
    #重新载入防火墙:
    firewall-cmd --reload
    #查看:
    netstat -nptl
    #或
    firewall-cmd --zone=public --query-port=8899/tcp
    
    image.png

    设置登陆端口和ip

    nohup jupyter notebook --no-browser --port 8899  --ip=20*.1**.1**.**2 &
    

    相关文章

      网友评论

          本文标题:服务器重启后开放jupyter端口,固定登录端口和ip,常开

          本文链接:https://www.haomeiwen.com/subject/xhwinrtx.html