본문 바로가기

분류 전체보기34

mac에서 docker mysql 실행 후 workbench로 접속하기 *docker 실행 후 workbench로 접속할때 필요할 설정. 1. mac에 mysql workbench를 설치함.2. docker 설치 후 kitematic 설치하지3. kitematic에서 mysql 설치 및 설정하기 (kitematic에서 설치한 이미지의 general 탭에 MYSQL_ROOT_PASSWORD 추가하고 비밀번호 넣기, Hostname/Ports에서 portforward 번호 확인), docker의 ip주소 확인 (docker preperences -> advanced 에서 docker subset) ip주소 확인 필요 없음 -> localhost 임4. 아래 링크대로 외부 접속 가능 아이디 만들어주기5. 위의 3번에서 확인한 아이피주소와 포트, 아이디 비밀번호를 workbench.. 2018. 9. 28.
springboot jdbc 미 설정시 발생 에러 springboot 에서 web과 jdbc를 옵션에서 선택하고, 데이터베이스에 대한 아무런 설정을 하지 않고 실행시 아래와 같은 에러가 뜬다. ***************************APPLICATION FAILED TO START*************************** Description: Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. Reason: Failed to determine a suitable driver class Action: Consider the following:If you want an embedded d.. 2018. 9. 28.
05. gradle 설치하기 windows 10환경에서 gradle document를 따라한다. #1. gradle 다운로드 및 환경설정 1) 수동으로 다운로드 https://gradle.org/releases/ 위 링크로 가서 binary-only로 적절한 최신 버전을 다운로드 하면된다. 2) 디렉토리 생성 압축을 풀면 디렉토리가 나오는데, 여기서는 c:\gradle 폴더를 만들고 거기에 푼다. c:\gradle 3) 그리고 환경변수를 설정 제어판 - 시스템 및 보안 - 시스템 : 고급 시스템 설정 시스템 변수에 path에 c:\gradle\[압축푼_폴더_이름]\bin 으로 추가한다. 4) 설치 시작 - cmd gradle -v 아래 같이 나오면 등록되었다. # 참조 gradle installation document - http.. 2018. 2. 25.
03. build tool 이란? #빌드툴에 대해서 알아보자 스택오버 플로우에 빌드툴이라고 검색하면 나오는 글 중 하나이다. #1. 빌드툴이 뭐지? What are build tools? Build tools are programs that automate the creation of executable applications from source code(eg. .apk for android app). Building incorporates compiling,linking and packaging the code into a usable or executable form. Basically build automation is the act of scripting or automating a wide variety of tasks tha.. 2018. 2. 19.