8월, 2022의 게시물 표시

Spring Boot Admin Server, Client config 설정하기

이미지
 Spring Boot로 많은 프로젝트를 진행하게 됩니다. 많은 모니터링 도구가 있지만, Spring Boot 어플리케이션을 쉽게 모니터링 할 수 있는 방법을 소개하려고 합니다.   코드 중심으로 살펴보겠습니다. 1. 어드민 서버 구축 1-1. 디펜던시 추가 dependencies { // https://mvnrepository.com/artifact/de.codecentric/spring-boot-admin-starter-server implementation 'de.codecentric:spring-boot-admin-starter-server:2.5.4' } 1-2. 어드민 서버 설정 활성화 @SpringBootApplication @EnableAdminServer public class ServerApplication { public static void main (String[] args) { SpringApplication. run (ServerApplication. class, args) ; } } EnableAdminServer를 하면 됩니다. 2. 클라이언트 서버 설정  예제는 book-client, member-client 2가지 클라이언트, member-client가 2개의 인스턴스 실행으로 작성했습니다.  2-1 디펜던시 추가 dependencies { // https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web implementation 'org.springframework.boot:spring-boot-starter-web:2.5.4' // https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-actuator implementation 'org.spring...

Oauth jwt example

이미지
Oauth jwt API WEB 예제 샘플 코드 https://github.com/withccm/oauth-jwt-example API 서버와 WEB 클라이언트 oauth 로그인 인증 예제로 구성

리눅스 centos 프로세스 한번에 죽이기(kill)

이미지
서버를 직접 운영하다 보면 프로세스를 관리해야할 때가 있습니다. 이때 유용한 명령어를 소개 드립니다. 부모 데몬 확인방법 pstree -p | grep httpd httpd (아파치)는 찾고싶은 프로세스입니다. 프로세스 한번에 죽이기 pgrep httpd | xargs kill httpd라는 프로세스를 죽이고 싶을때 사용하면 됩니다.