본문 바로가기
  • Welcome J-Kyu Tstory
728x90

설치 및 설정10

가상머신 설치 및 설정 가상 머신을 사용하는 이유 ▶어떤 결과물을 실행시키므로써 테스트를 해봐야하는데 실제 컴퓨터에서 실행 할 경우 위험요소가 있기때문에 가상의 컴퓨터를 만들어서 테스트를 하기 위함 필요 도구 1. Virtual Box 2.Windows_Server_iso # Virtual Box 다운로드 Oracle VM VirtualBox Oracle VM VirtualBox Welcome to VirtualBox.org! VirtualBox is a powerful x86 and AMD64/Intel64 virtualization product for enterprise as well as home use. Not only is VirtualBox an extremely feature rich, high performan.. 2022. 3. 21.
스프링 설치(JDK+아파치) ※공통 주의점 다른걸 복사해서 붙여넣기 할경우 메모장에 먼저 붙여넣고 이상없는지 확인후 메모장에 있는걸 다시 복사해서 붙여넣어야함 ​ 1. JDK, JRE 다운 및 설치 JDK 다운로드 : https://www.oracle.com/java/technologies/javase-downloads.html ​ JRE 다운로드 : https://java.com/ko/download ​ 2. 환경변수 추가 고급 시스템 검색 ​ 3. 환경변수 클릭 ​ ​ 4. 환경 변수 -> 시스탬 변수 -> 새로 만들기 변수이름 : JAVA_HOME 변수 값 : 디렉터리 찾아보기 (JDK 설치되어있는 경로 ​ 5-1. 환경 변수 : 바로가기 같은 개념 해당 경로로 이동하려면 (명령프롬프트 창에서 ) 5-2. 환경 변수 사용 하지.. 2022. 3. 17.
JDBC 설치 방법 JDBC 설치 ▶ JDBC 를 설치하는 이유는 DataBase와 Java 와 연결하여 데이터를 불러오고 저장하도록 하기 위함 JDBC 방법 [사전준비] mariaDB 설치 1. 홈페이지에서 JDBC download 페이지 이동 https://mariadb.org/download/?t=connector&p=connector-java&r=2.7.3 Download MariaDB Server - MariaDB.org REST API Release Schedule Reporting Bugs … Continue reading "Download MariaDB Server" mariadb.org ▶Connerctor/J 2.7.3 버전 다운로드 ▶C:\Program Files\Java\jdk1.8.0_321\jre\.. 2022. 3. 17.
GitHub Git 설치 & 환경설정 🔍 Git 설치하기 : https://git-scm.com/ 설치 완료 후 Git bash 열기 git bash 에서 환경설정 하기 Step 1 : 유저이름 설정 git config --global user.name "your_name" Step 2 : 유저 이메일 설정하기 git config --global user.email "your_email" Github가입시 사용한 이메일을 써주세요! Step 3 : 정보 확인하기 git config --list Github에 처음 코드 업로드하기 🏋️‍♂️ 초기화 git init 추가할 파일 더하기.(점) 은 모든 파일이라는 뜻, 선택적으로 올리고 싶으면 add뒤에 파일 이름 붙여주면 됨 (예. git add index.html) g.. 2022. 2. 17.
728x90