IT'S DO
[docker / docker 명령어 에러] docker desktop A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
error 2024. 1. 23. 12:27

1. cmd 또는 Window powerShell에서 docker images 또는 docker version 했을 시에 아래와 같은 에러가 나올때 사용. error during connect: Get "https://192.168.99.101:2376/v1.24/images/json": dial tcp 192.168.99.101:2376: connectex: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. 2. 아래 폴더 및 ..

article thumbnail
[Docker,Hyper-V 에러] hardware-assisted virtualization (either Intel VMX or AMD SVM) and Data Execution Prevention (sometimes labeled XD or Execute Disable or NX) are enabled in your BIOS
error 2024. 1. 23. 10:43

1. Windows PowerShell 관리자 권한으로 열기 2. bcdedit으로 hypervisorlaunchtype이 off인지 auto인지 확인 3. off일 시에 bcdedit /set hypervisorlaunchtype auto 로 변경 변경 잘 됐나 확인 => bcdedit 4. docker 다시 실행 또는 안될시 컴터 리부팅 정상적으로 도커 실행됨.

article thumbnail
REST API Cheatsheet (REST API에 필요한 정보)
개발/API 2024. 1. 15. 11:39

REST API에 필요한 정보 https://blog.bytebytego.com/ https://blog.bytebytego.com/ blog.bytebytego.com

article thumbnail
[postgreSQL] 데이터베이스 생성, 테이블 생성, 스키마 생성, DBeaver 접속
DB/postGresql 2023. 12. 27. 11:23

# postgreSQL의 데이터베이스 생성을 해봅시다.  # 순서윈도우키 -> psql 입력   엔터면 기본설정해둔 암호 입력 postgres=# 으로 로그인 됩니다.  # 데이터베이스 생성CREATE DATABASE lego; # 데이터베이스 목록 확인\l (백 슬래시 + 소문자 L) # 데이터베이스 연결\c lego(백 슬래시 + c + 데이터베이스 이름)  # schema 생성create schema 스키마이름# 테이블 생성CREATE TABLE shapes (     id SERIAL PRIMARY KEY,     shape_name VARCHAR(50) NOT NULL,     position_x INTEGER,     position_y INTEGER );  # DBeaver 접속DBeaver..