서버 작업

1374 단어

서버 원격 호출tensorboard

# 
ssh -L 16006:127.0.0.1:6006 xuguanghui@sever_ip
# 
tensorboard --logdir=xxx --port=6006
# 
127.0.0.1:16006

서버 설정 ipython 노트북


서버 작업

  • ipython을 시작하고 다음 명령을 입력하십시오.사용자 정의 암호를 입력한 후 명문 문자열을 기록합니다
  • from IPython.lib import passwd
    passwd()
    # Out[2]: 'sha1:026678de36b2:e4b83078e02c470b15789ade069359a20b0385dd'
    
  • ipython을 종료하고 터미널 명령줄에 들어가서 ipython 서버를 구축하고 이름을 지정합니다
  • ipython profile create your_server_name
    
  • 2 출력 폴더에 들어가서ipython_ 편집config.py 파일
  • vi ipython_config.py
    

    다음 코드 세그먼트 삽입
    c = get_config()
    
    # Kernel config
    c.IPKernelApp.pylab = 'inline'
    
    # Notebook config
    c.NotebookApp.ip='*'
    c.NotebookApp.open_browser = False
    c.NotebookApp.password = u'sha1:026678de36b2:e4b83078e02c470b15789ade069359a20b0385dd' # 1 
    
    # It's a good idea to put it on a know,fixed port
    c.NotebookApp.port = 6789
    
  • ipython 서버를 시작합니다
  • jupyter notebook --config=/home/your_name/.ipython/profile_your_server_name/ipython_config.py
    # ipython notebook --config=/home/xuguanghui/.ipython/profile_notebook_server/ipython_config.py
    

    클라이언트 작업


    로컬 브라우저에서 서버 ip:6789를 입력하면 로그인 인터페이스가 나타나고 비밀번호를 입력하면 됩니다

    좋은 웹페이지 즐겨찾기