분류 전체보기

    Windows Server 보안 패치 다운로드

    최신 롤업 코드 확인 : 롤업 확인 시 해당 롤업에서 발견된 문제점 꼭 확인 해야함 : https://support.microsoft.com/ko-kr/topic/2022%EB%85%84-2%EC%9B%94-8%EC%9D%BC-kb5010419-%EC%9B%94%EA%B0%84-%EB%A1%A4%EC%97%85-d8aae3ca-0c11-4136-ab17-43ada2fb5e37 2022년 2월 8일-KB5010419(월간 롤업) 요약 개선 및 수정, 알려진 문제 및 업데이트를 다운로드하는 방법을 포함하여 이 보안 업데이트에 대해 자세히 알아보습니다. 중요 Windows 8.1 및 Windows Server 2012 R2가 주류 지원의 끝에 도달하고 support.microsoft.com : 사이트 방문하여..

    Spring Log

    선언과 사용 - @Slf4j - log.info("name = {}", name); log level - trace, debug, info, warn, error application.properties 설정 - 설정해준 레벨 수준으로 로그가 남는다. - 예시) logging.level.hello.springmvc=trace - 개발서버는 debug, 운영서버에서는 info 부터 찍는게 통상적이다. - default는 info이다. 현재 로그는 로그 파일 관리를 지원한다.

    DBSafer Server Agent Install

    에이전트를 설치할 서버에 설치 (압축)파일 전송 서버에 (ssh)접속하여 경로를 생성 > mkdir /usr/local/pnpsecure 설치할 경로에 압축파일 이동 > cd /root > mv 설치파일명.tar /usr/local/pnpsecure/ > cd /usr/local/pnpsecure > tar xvf 설치파일명.tar install & start // 설치 > ./install_linux.sh // 기동 > ./start.sh 서비스 체크 > ps -ef | grep "nodesafer" : 아래 4개 프로세스 확인

    Spring MVC

    Project 생성 - Gradle, Jar, java 11 - SpringWeb, Thymeleaf, Lombok Project 기본 세팅 - 생성된 프로젝트를 로드할 때는 반드시 build.gradle 파일로 로드 - annotation processing 사용 - build and run using, run tests using 은 인텔리제이 정식 버전인 경우 intellij IDEA로 하면 빠름 Welcome page - src > main > resources > static > index.html Bootstrap 활용 - src > main > resources > static > css > bootstrap.min.css 파일 넣기 - 서버 기동 시 파일 내용이 보이는것을 확인 - http..