일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- RSS
- namespace
- DOIK
- httpd실행
- 쿠버네티스
- variable
- linux
- Engineer
- mongodb operator
- devops #jenkins
- python
- multivm
- Strimzi
- container
- 컨테이너
- Kubernetes
- springboot
- nginx
- docker
- k8s
- ioredirection
- 초간단파이썬
- 도커
- aws #engineer
- java
- bash
- 파이썬
- devops #engineer
- WEB
- Vagrant
- Today
- Total
목록전체 글 (81)
샤인의 IT (막 적는) 메모장
예시로 학생 정보를 담는 Class를 생성한다. 구조체, Getter & Setter 생성하여 객체 정보를 받아올 수 있도록 설정함 package com.js.app.student; import java.time.LocalDate; import org.apache.tomcat.jni.Local; public class Student { private Long id; private String name; private String email; private LocalDate dob; private Integer age; // 객체가 가진 정보를 String으로 리턴, 생성하지 않을 경우 제대로 된 값을 확인 못함 @Override public String toString() { return "{" + " ..
VSCode에서 Spring Initializer 실행하여 프로젝트를 생성한다. SpringBoot - 2.6.2 Project Langauge - JAVA Groupid - com.example Artifactid - web Packaging Type - jar java version - 설치된 것 dependancy - devtool, web, postgresql, jpa pom.xml에 해당 JPA dependancy 주석처리 4.0.0 org.springframework.boot spring-boot-starter-parent 2.6.2 com.js app 0.0.1-SNAPSHOT app Demo project for Spring Boot 17 org.springframework.boot spr..
Apache WEB 서버 구성파일(httpd.conf) 설정 정보 정리 Apache 구성 파일 위치 vi /etc/httpd/conf/httpd.conf HTTP로 응답할 헤드를 설정하는 Servertokens 옵션 최소한의 정보를 가져오도록만 설정하는게 보안에 좋음. Prod / Major / Minor / Min / OS / Full 옵션 **Servertokens Prod Server sends (e.g): Server : Apache Apache Home Directory 지정 ServerRoot ServerRoot "/etc/httpd" Apache가 가동되는 동안 수신할 포트 지정 Listen Listen 80 Apache와 호환되는 모듈 로드 LoadModule ssl_module modul..