본문 바로가기

2️⃣ 개발 지식 B+47

docker 설치 및 기본 문법 작업환경 세팅 로드를 줄여줄 docker 작업을 시작해보자 설치하기 환경 OS : ubuntu 20.04 Install using the repository docs.docker.com/engine/install/ubuntu/ 문서에 따르면 3가지 방법이 있다고한다. 필자는 첫번째 방법으로 최신버전(20.10.3) docker engine을 다운 받았다. 그리고 아래 방법으로 설치가 잘 되었는지 확인했다. $ sudo systemctl start docker $ sudo systemctl status docker $ docker version 명령어별로 기술하여 깔끔한 참고자료 docker 이미지 관련 명령어 이미지는 Dockerfile 을 기준으로 빌드(생성)된다. 이미지 빌드 $ docker imag.. 2021. 2. 18.
[우분투 20.04] 듀얼 모니터 설정 1. 우선 세팅창이 안 열려서 $ sudo apt-get update // 처음엔 터미널에서 다운로드 로딩안되길래 회색 Software Updater 실행하고, 재부팅 // 그리고는 위 명령어 실행되지만 // Error 뜨길래 Unable to lock directory /var/lib/apt/lists/ $ sudo rm var/lib/apt/lists/* -vf // 지우고 $ sudo apt-get update // 작동함. 2. setting 창 열기 위해 $ sudo apt-get install --reinstall ubuntu-desktop 3. hdmi 연결 확인을 위해 godisgood.tistory.com/m/102 $ xrandr // HDMI disconnected -> 감지는 하지만.. 2021. 2. 7.
workbench 깔았는데 비정상적으로 안 열리면? stackoverflow.com/questions/52111129/mysql-workbench-not-opening-on-ubuntu 2021. 1. 26.
Error: write EPROTO Client 측에서 axios GET 요청을 했는데 에러가 발생하더라.. await axios.post('https://localhost:8080/callback',{ authorizationCode: authorizationCode }) 해결방법 localhost에서는 https 요청을 할 수 없다고 한다. await axios.post('http://localhost:8080/callback',{ authorizationCode: authorizationCode }) 2021. 1. 22.
What is "Bearer" in JWT (Json Web Token) stackoverflow.com/questions/39992774/verify-a-jwt-token-string-containing-bearer-with-nodejs 1. What is "Bearer" ? The value Bearer in the HTTP Authorization header indicates the authentication scheme, just like Basic and Digest. It's defined in the RFC 6750. 2. How to solve it for verify JWT 그러해서 authHeaderValue에 붙은 scheme 을 떼고 Token 만 얻기 2021. 1. 21.
Error: error:0909006C:PEM routines:get_name:no start line JWT 라이브러리를 이용해 토큰 생성을 공부하던 중 에러가 발생하였다. 무슨 일이고 하니 github.com/auth0/node-jsonwebtoken/issues/642 Please tutorial how to fix "error:0909006C:PEM routines:get_name:no start line" with algorithm: "RS256" · Issue #642 · auth0/n Please do not report security vulnerabilities here. The Responsible Disclosure Program details the procedure for disclosing security issues. Thank you in advance for helping u.. 2021. 1. 21.
Error: unable to verify the first certificate (Basic auth) POST맨 에러 해결 github.com/postmanlabs/postman-app-support/issues/6354 After: Postman -> Settings -> General -> SSL certificate validation -> OFF it works 2021. 1. 21.
우분투 환경에서 git 시작하기 우분투를 몇달 간 사용해보면서 느낀 점은 모든 작업을 CLI (Command Line Interface) 로 진행한다는 것이다. 그래서 git bash 와 같은 별도의 프로그램 설치 필요 없다. 한번 CLI 방법을 함께 공부해보자. with 참고자료  기본 작업 패키지 설치$ sudo apt-get install git-core사용자 정보 추가$ git config --global user.name "이름"$ git config --global user.email "이메일 주소"컬러 설정$ git config --global color.ui "auto" Git 저장소 생성 윈도우에서는 이동하기 편한 C:/ 안에다가 했는데, 우분투는 터미널 시작 경로가 home/username 임을 인지하고 시작하였다. .. 2020. 12. 23.
우분투 20.04 마우스 휠 속도 조정 우분투는 기본적인 글씨 폰트나 전체적인 UI가 쬐끄마하게 느껴진다. 아니 그렇다. 사실 이것도 답답한데, 더 답답이는 마우스 휠 속도 ㅎㅎ 한 스크롤 = 1줄 이동... 진짜 거북이다. 참고자료에서 알게된 방법을 정리해보았다.해결방법 ① imwheel 설치$ sudo apt-get install imwheel② .imwheelrc 파일 생성 $ pwd※ 파일 위치 확인 후 자신이 원하는 위치에 생성. (필자는 home/usrname 위치에서)$ gedit ~/.imwheelrc③ 열린 파일에서 아래 스펙 입력".*"None, Up, Button4, 6None, Down, Button5, 6Control_L, Up, Control_L|Button4Control_L, Down, Co.. 2020. 12. 23.