일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- mybatis
- STS
- between 날짜
- hikari
- catalina log
- Spring Boot
- log4j2
- between date
- Spring Security
- 배열스트링
- intellij
- MySQL
- Java
- oracle between
- Linux
- log4j profile
- bitbucket
- oracle
- Gradle
- Spring
- github
- ubuntu
- ORACLE CLOUD
- hikaricp
- 라즈베리파이
- git
- springboot
- template
- python 개발환경
- datasource
- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- mybatis
- STS
- between 날짜
- hikari
- catalina log
- Spring Boot
- log4j2
- between date
- Spring Security
- 배열스트링
- intellij
- MySQL
- Java
- oracle between
- Linux
- log4j profile
- bitbucket
- oracle
- Gradle
- Spring
- github
- ubuntu
- ORACLE CLOUD
- hikaricp
- 라즈베리파이
- git
- springboot
- template
- python 개발환경
- datasource
- Today
- Total
목록MySQL (3)
파워노트
[ skeleton ] springboot 프로젝트 - mysql 연동 mysql 연동하는 프로젝트 설정. 데이터 처리 적용. hikari 설정. 자주 마주치는 오류 spring-boot-starter-data-jdbc, spring-boot-starter-data-jpa 와 같은 의존성을 추가하고 springboot 를 실행하면. 아래와 같은 경고가 나타난다. *************************** APPLICATION FAILED TO START *************************** Description: Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource cou..
* mysql 처음 설치이후에 Workbench 등으로 접속을 시도시 보안적인 이슈로 workbench에서는 접속이 안되고 해당 mysql 서버에서만 접속이 되도록 처리 된다. * 이를 허용하여 workbench 등에서 접속이 이루어 지도록 설정이 필요하다. * 물론 운영시점에서는 외부 접속 허용에 대한 고려가 이루어 져야 할것이다. * 이래 서버는 라즈베리파이4 셋팅이 된 서버이다. # mysql 접속 허용 포트 확인 - mysql 설치 및 실행 서버에 접속하여 netstat 확인 하면 . 3306 포트에 대해서 내부 아이피로만 설정이 되어 있는것을 확인 할 수 있다. ( 127.0.0.1:3306 ) ubuntu@ubuntu:/etc/mysql$ netstat -anpt (Not all process..
# 버전확인 ubuntu@ubuntu:~$ lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 18.04.4 LTS Release: 18.04 Codename: bionic # mysql 설치 ubuntu@ubuntu:~$ sudo apt-get update --- ubuntu@ubuntu:~$ sudo apt-get install mysql-server-5.7 --- 설치 과장 진행. Y 입력. --- # mysql 설치 확인 ubuntu@ubuntu:~$ apt --installed list | grep mysql # mysql service 실행 ubuntu@ubuntu:~$ service my..