본문 바로가기

password3

jupyter notebook 패스워드 확인! 아나콘다 패키지에는 jupyter lab과 jupyter notebook이 있습니다. 보통 사용할 때 powershell이나 cmd에서 jupyter notebook을 직접 쳐서 실행하면 다음과 같이 나옵니다. 별도로 password설정을 하지 않았다면, 접속할 수 있는 url에 token이 담겨있습니다. 하지만 이 토큰이 없다면 아래와 같이 비밀번호를 입력하라는 창이 나옵니다. 그렇다면 anaconda navigator를 썼을 땐 어떻게 해야할까요?? ananconda navigator를 실행하고 원하는 프로그램에 launch버튼을 누르면 바로 실행이 됩니다. 이 때, 브라우자가 자동실행되면서 접속이 되면 다행인데, 가끔 자동으로 브라우저가 실행되지 않을 때가 있습니다. 그러면 cmd로 실행한 것이 아.. 2021. 6. 27.
google cloud console root 접속 구글 클라우드 플랫폼은 구글이 사용하는, 동일한 지원 인프라스트럭처 위에서 호스팅을 제공하는 구글의 클라우드 컴퓨팅 서비스이다. 구글 클라우드 플랫폼에서 vm을 할당받고 난 뒤 ssh로 root에 접속하려고 하면 에러가 난다. 이럴 때는 다음과 같이 해결 할 수 있다 /etc/ssh/sshd_config에서 다음과 같은 설정을 변경해주어야 한다. PermitRootLogin yesPasswordAuthentication yes 2020. 6. 1.
Jupyter notebook setting execute command : jupyter notebook --ip=MY_IP jupyter notebook --generate-config it makes jupyter_notebook_config.py file on C:\Users\User\.jupyter delete jupyter_notebook_config.json file ipython -> from IPython.lib import passwd; passwd() -> sha1: ~~~~~ edit jupyter_notebook_config.py => c.NotebookApp.password = ' sha1: ~~ ' c.NotebookApp.notebook_dir = "PATH" c.NotebookApp.terminals_enabled =.. 2019. 9. 20.