
1. 다운로드 https://dev.mysql.com/downloads/mysql/ 위의 빨간색 표시된 Archives를 누르면 이전 버전을 다운로드 받을 수 있다. 나는 8.0.32가 필요하여 다운받음 2. 원하는 위치에 압축풀기 3. 관리자 권한으로 명령프롬프트 실행 Win + R > cmd 관리자 권한으로 실행 : ctrl + Shift + 확인(Enter) 클릭 mysql bin 폴더로 이동 cd E:\Devs\DB\mysql-8.0.32-winx64\bin 4. 윈도우 서비스 등록 mysqld --install cf) 윈도우 서비스 제거 mysqld --remove 5. 초기화 mysqld --initialize 짠! 아까 없던 data 폴더가 생성되었다. data > 컴퓨터 이름.err 파일에..

1. Nexus 다운로드 https://help.sonatype.com/repomanager3/product-information/download 각 시스템에 맞는 걸로 다운로드 2. 압축풀기 nexus- : application directory ../sonatype-work/nexus2 : data directory 3. 실행 application directory > bin 폴더로 가서 startup script 실행 nexus.exe /run Started Sonatype Nexus라는 메세지가 보일 때까지 기다린다. 4. 접속 기본 접속 URL : http://localhost:8081/ 참고 : port 변경은 nexus-\etc 폴더내에 nexus-default.properties 파일에서 ..

1. Docker 연결 구성Window > Show View > Other...Docker Explorer를 선택 2. Docker 연결1. Docker 연결 추가 : + 아이콘을 클릭, 새 Docker 연결 추가Linux - Unix Socket (/var/run/docker.sock)Docker Desktop - TCP Connection (tcp://localhost:2375) 3. Docker 기능Docker Explorer : Docker 이미지, 컨테이너, 네트워크 및 볼륨 확인 가능컨테이너 관리컨테이너 시작/중지로그 확인 가능터미널 이용 4. 추가로 해볼 것Dockerfile 직접 이미지 빌드 (Run As > Docker Build...)Docker Compose: docker-comp..