백엔드 개발툴 - IntelliJ
http://www.jetbrains.comwww.jetbrains.com/idea/download/#section=windows
IntelliJ IEDA는 자바 + 웹 개발이 합쳐진 툴이다. 위 링크를 들어가서 다운받자.
DB 접속 툴 - DataGrip
기존에 mysql에 접속하기 위해서 workbench를 받고 oracle에 접속하기 위해서 SQL developer를 다운받는 DB마다 다른 툴을 사용했지만 DataGrip 하나면 거의 모든 DB에 동일한 UI로 접속 가능
Docker 설정
로컬환경에서는 Docker 에 원하는 DB의 이미지를 구동하는 것이 가장 간편하다.
환경 설정
Docker를 설치하기 위해서는 가상화 기술을 설정해야 한다.
제어판 > 프로그램 설치 및 제거 > window 기능 켜기/끄기 > Hyper-V 체크 후 리부팅 을 해야하지만
windows 10 Home에서는 해당 기능이 보이지 않는다!
windows 10 Home 사용자들은 forbes.tistory.com/542 이 링크에 들어가서 설정을 해주자!
설치 - Chocolatery 사용
Docker를 설치하기 위해 Chcolatery를 사용할 것이다.
PowerShell을 작업 관리자 모드로 실행시킨 후에 아래 코드를 그대로 입력하여 Chcolatery 윈도우 패키지 매니저를 설치하자.
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
그리고 아래 명령어로 Docker를 설치한다.
choco install docker-desktop
도커 설치 중 에러 관련
Set-ExecutionPolicy Bypass -Scope Process -Force;
System.Net.ServicePointManager]::SecurityProtoco = System.Net.ServicePointManager]::SecurityProtocol - bor 3072; iex ((New-Object System.Net.WebClient). DownloadString('chocolatey.org/install.ps1'))
WARNING: An existing Chocolatey installation was detected. Installation will not continue.
For security reasons, this script will not overwrite existing installations.
Please use choco upgrade chocolatey to handle upgrades of Chocolatey itself.
혹시 도커 설치 중 위와 같은 오류가 발생하면 제어판 > 모양 및 개인설정에 들어간 후에
숨김 파일, 폴더 및 드라이브 표시를 한 다음
C:\ProgramData\chocolatey 폴더를 삭제한다!
그 후, 아래 명령어를 복사해서 PowerShell을 관리자 모드로 켠 후에 입력한다!
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
Docker 실행
Docker를 실행하기 위해서는 docker-users 그룹을 아래와 같이 추가로 등록해야 한다.
net localgroup docker-users qkwl5 /add
사용자는 아래에서 확인할 수 있다.
아래와 같은 오류가 발생하면 컴퓨터를 재부팅해보자!
Rest API 테스트 툴 - Postman
https://chrome.google.com/webstore/detail/postman/fhbjgbiflinjbdggehcddcbncdddomop
위 링크로 들어가서 앱을 추가하고 실행한다!
'React+REST API 게시판 구현 > BE & DB 개발환경 설정' 카테고리의 다른 글
DataGrip 사용법 + Docker (0) | 2021.09.16 |
---|
주니어 개발자에욤
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!