개발64 [Mac/Linux] file, directory 생성/삭제/복사/구조확인 터미널 갖고놀기! xshell 로 공부한 Linux 명령어 mac 터미널에서 실행 1. file, directory 생성 / 이동 $ mkdir linuxprac // linuxprac directory 생성 $ cd linuxprac // linuxprac 폴더로 이동 $ touch one two three // 파일 생성 $ ls // 현재 폴더안에 있는 폴더 및 파일 확인 onethreetwo $ tree // tree 구조확인 . ├── one ├── three └── two 2. 파일, 폴더 삭제 $ mkdir folder1 // folder1 폴더생성 $ tree . ├── folder1 ├── one ├── three └── two 1 directory, 3 files // 위에서 touch.. 2022. 1. 17. [MAC] homebrew mysql 나가기 / 실행중지 명령어 1. mysql 모니터창에서 나가기 mysql> exit Bye 2. brew 에서 mysql 실행 중지 $ brew services stop mysql Stopping `mysql`... (might take a while) ==> Successfully stopped `mysql` 2022. 1. 17. [MAC] mysql database생성하기 1. mysql 시작 $ brew services start mysql // mysql 시작 $ mysql -uroot // mysql 모니터로 들어가기 2. mysql 에 기본적으로 생성되는 데이터베이스는 다음과 같다. mysql> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | mysql | | performance_schema | | sys | +--------------------+ 3. 새로운 데이터베이스를 추가하기 위해서 다음의 명령어 사용 mysql> create database 원하는이름; Query OK, 1 row affected // 이 메세지가 뜨면 잘 .. 2022. 1. 17. VScode mysql 연동 / JPA https://mvnrepository.com/artifact/mysql/mysql-connector-java/8.0.27 https://somuchthings.tistory.com/143?category=856323 [Java] VSCODE에서 MAVEN 프로젝트에 MySQL JDBC 연동 JPA를 배우기 전에 간략하게 이런 게 있고 동작 방식, 여러 문제 때문에 JPA가 나오게 되었다는 것 정도만 알고 넘어가서 오랜만에 다시 복습할 겸 글을 작성한다. 주제에 앞서서 JDBC에 대해 간략 somuchthings.tistory.com https://devgoat.tistory.com/9 [Spring Boot & JPA & mysql] 스프링부트 mysql JPA 연결하기. ■ 목표 - Springboo.. 2022. 1. 17. 이전 1 ··· 12 13 14 15 16 다음