xshell 配置 jupyter

爲了使用遠程服務器的python環境,利用xshell隧道技術配置jupyter本地訪問服務 ( SecureCRT也是相似的,可參考鏈接http://blog.csdn.net/du_qi/article/details/51427857)python

進入本身的遠程帳戶,jupyter已經安裝好了,不用再重複安裝,若是沒有則使用 pip install jupyter安裝一下shell

第一步:建立遠程鏈接密碼

->$ ipython >> from notebook.auth import passwdvim

>>passwd()瀏覽器

下面是輸入兩次密碼,而後會生成密鑰(sha1:24324.....),輸入的密碼要記住,登陸jupyter的密碼, 生成的密鑰先拷貝到其餘地方保存服務器

>>exit (或者ctrl+z也能夠退出ipython終端)spa

第二步:生成並修改配置文件

->$ jupyter notebook --generate-config.net

->$ vim ~/.jupyter/jupyter_notebook_config.pyblog

將下面內容修改一下並寫入到打開的文件中ip

c.NotebookApp.ip = '*'  (這裏不變,是*號)it

c.NotebookApp.password = u'sha1:24324..... ' (這裏就是密鑰)

c.NotebookApp.port = 9999 (這裏是遠程訪問的端口)

c.InteractiveShellApp.matplotlib = 'inline'

c.NotebookApp.open_browser = False (關閉本地瀏覽器)

修改好之後保存文件

第三步:配置 xshell file -> properties -> tunneling(隧道) -> Add 添加映射

第四步:使用jupyter

回到服務器

->$ jupyter notebook

或者是 nohup jupyter notebook >/dev/null 2>&1 & 後臺啓動(推薦)

在本地電腦瀏覽器輸入 localhost:9999 (你設置的本地映射端口)

注意:每次訪問需xshell 先鏈接上服務器

相關文章
相關標籤/搜索