본문 바로가기
반응형

개발 지식 B+24

Error: listen EADDRINUSE: address already in use :::port 1차 방법 2차 방법 $ sudo netstat -pna | grep 5000 아니 rambox 앱 port 가 docker backend랑 곂쳐서 snap configure 설정으로 바꿔보려고하는데 안되네... 결국 system monitor에서 직접 꺼버림 ㅜㅜ 2021. 2. 19.
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.
Data Structure - Stack, Queue Intro Data -> process -> Info Data Type Dtat Structure 하나의 데이터를 해석하는 방법을 정의함. 여러 데이터들의 묶음을 어떻게 저장하고 사용할지 정의한 것 ex. Array, Stack, Tree etc.. Stack LIFO (후입선출) 나중에 들어온 것이 먼저 나감 = FILO ex. web page 뒤로가기 method / property push StackOverflow pop StackUnderflow size peek top property 인듯? 구현 & Time Complexity - 배열로 구현 접근, 구현 빠름 but 삽입, 삭제 느림 - Linked List 반대 Queue FIFO (선입선출) ex. 대기줄 method / property .. 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.
반응형