일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- producer
- mirror maker2
- transactionaleventlistener
- bean
- AWS
- K8s
- CodePipeline
- Kubernetes
- mysql
- offsetdatetime
- JPA
- spring kafka
- Kotlin
- cd
- API
- topic생성
- PAGING
- spring
- consumer
- entity graph
- Spring JPA
- QueryDSL
- centos7
- Streams
- ECS
- kafka
- CI
- git
- Spring Data JPA
- Entity
- Today
- Total
목록전체 글 (100)
Yebali
1. root 계정 로그인 $ mysql -u root -p 2. 'mysql' DB 사용 use mysql; 3. 비밀번호 변경 버전별 비밀번호를 변경하는 방법이 다르다. #5.6 이하 > update user set password=password('new password') where user = 'root'; # 5.7 이상 > update user set authentication_string=password('new password') where user = 'root'; # 8.x 이상 > alter user 'root'@'localhost' identified with mysql_native_password by 'new password'; 4. 변경사항 적용 > flush privileg..

yum을 이용한 설치 설치 방법 # repository 추가 sudo rpm -ivh http://dev.mysql.com/get/mysql-community-release-el7-5.noarch.rpm # 설치 sudo yum install mysql-community-server Mysql 시작 # mysql 시작 sudo systemctl start mysqld # mysql 상태 확인 sudo systemctl status mysqld Mysql 설정 # mysql 접속, 처음에는 비밀번호가 없기 때문에 password입력 시 그냥 엔터치면 된다. mysql -u root -p # 'mysql' 데이터 베이스 사용. # root 비밀번호를 바꾸는 것은 mysql DB의 user테이블의 정보를 바꾸..
인증서 업체에 문의하면 보통 3개의 파일이 온다. 서버 도메인은 www.example.com로 가정하겠다. 1. www.example.com.crt 2. Chain_RootCA_Bundle.crt 3. www.example.com.key (private key 파일) 그러나 가끔 인증서를 적용할 때 jks 파일이 필요한 경우가 있다. crt파일들을 jks파일로 변환하는 방법은 아래와 같다. 1. crt파일(인증서)들을 하나로 통합 > cat www.example.com.crt Chain_RootCA_Bundle.crt > www.example.com.pem 인증서가 재대로 통합되었다면 아래 처럼 확인할 수 있다. > cat www.example.com.pem -----BEGIN CERTIFICATE---..

Apache란? Apache는 아파치 소프트웨어 재단에서 관리하는 HTTP 웹 서버이며, 흔히 말하는 LAMP(Linux, Apache, Mysql, Php)의 구성요소 이기도 하다. 주로 WAS(Web Application Server)의 부담을 줄이기 위해 정적 요소(js, css 파일 등)를 처리하거나 로드 밸런싱을 위해 사용한다. 그렇기 때문에 서버를 구성하다 보면 Apache나 Nginx 같은 WS(Web Server)를 거의 필수로 설치하게 된다. Apache의 설치 방법을 알아보자. yum을 이용한 설치 설치 방법 가장 간단한 설치 방법이다. sudo yum install httpd 명령어를 입력하면 위와 같은 화면이 나오며, y를 입력하면 설치가 진행된다. yum으로 설치하면 보통은 최신 ..