Docker Container Mysql 접속하기
·
미분류글
docker로 띄운 mysql에 접속하여 존재하는 database들을 확인해보고자 했다. (docker container는 존재하는 상태임) 컨테이너 시작 docker start containerName 컨테이너 접속 docker exec -it containerName bash 참고 : -it는 Interactive Terminal Mode를 뜻한다. ★ mysql 관리자로 접속 mysql -u root -p 그럼 아래와 같이 mysql Password 입력 후에 접속이 완료된다. Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 19 Server version: 8.0.3..
docker 기본 사용법 - 명령어
·
미분류글
docker 기본 사용법 ex) ubuntu를 컨테이너에 띄울 거고, 컨테이너 이름은 ubuntu1로 지정할 것임 도커 이미지 검색 (ex : ubuntu 이미지) docker search ubuntu 이미지 다운로드 (ex : ubuntu 이미지) docker pull ubuntu 이미지 리스트 출력 docker images 컨테이너 생성 (ex : name은 ubuntu1로 지정) docker run -it --name=ubuntu1 ubuntu 컨테이너 접속 docker exec -it ubuntu1 bash 컨테이너 접속하지 않고 실행만 한 뒤 결과출력 docker exec ubuntu1 ls 컨테이너 탈출 (컨테이너를 정지하지 않고 나오기) ctrl + P + Q 도커 컨테이너 리스트 확인 do..
빌드 실패 해결 - Gradle JVM의 sdk 설정 필요 | A problem occurred configuring root project 'demo'. | Could not resolve all files for configuration ':classpath'. | Could not resolve org.springframework.boot:spring-boot-gradle-plugin:3.0.1.
·
미분류글
문제상황 clone해온 프로젝트의 Sync 과정에서 아래와 같은 문제 발생! 로그 일부 ↓ A problem occurred configuring root project 'demo'. > Could not resolve all files for configuration ':classpath'. > Could not resolve org.springframework.boot:spring-boot-gradle-plugin:3.0.1. Required by: project : > org.springframework.boot:org.springframework.boot.gradle.plugin:3.0.1 > No matching variant of org.springframework.boot:spring-boo..