You need to DNS server registration with 8.8.8.8
꼭 필요하진 않지만, 기본적으로 pip install등을 할 때 DNS를 못찾는 에러가 자주 발생하므로 구글 DNS서버를 등록해주자.
sudo vim /etc/resolv.conf 를 하고, 아래 line을 추가해준다.
nameserver 8.8.8.8
public jupyter notebook server
https://docs.aws.amazon.com/dlami/latest/devguide/setup-jupyter-config.html
https://docs.aws.amazon.com/dlami/latest/devguide/setup-jupyter-start-server.html
$ cd ~
$ mkdir ssl
$ cd ssl
$ openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout mykey.key -out mycert.pem
jupyter notebook --ip "0.0.0.0" --port 9999 --certfile=~/ssl/mycert.pem --keyfile ~/ssl/mykey.key
SSH tunnel
https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-ssh-tunnel-local.html
ssh -i temp-key.pem -N -L 9999:ec2-54-180-93-113.ap-northeast-2.compute.amazonaws.com:9999 ubuntu@ec2-54-180-93-113.ap-northeast-2.compute.amazonaws.com
then, connect with this url
'Development > Free Topic' 카테고리의 다른 글
Windows10에서 안드로이드 앱 실행하기 (0) | 2021.09.12 |
---|---|
Real Time C Programming (0) | 2021.01.28 |
Ubuntu Process의 Priority와 Niceness 설정하기 (2) | 2020.07.18 |
Ubuntu 처음 시작하기, 여러가지 설정 (0) | 2020.06.24 |
라즈베리파이 OS 포멧/초기화/업데이트 (0) | 2020.06.21 |
댓글