어떻게 경제적 자유를 얻을 것인가?ㅣ이동훈 SK바이오투자센터장, 부사장ㅣ경제적자유 투자 재테크ㅣ세바시 1469회
https://www.youtube.com/watch?v=R3kW7HfrGB4
(최초공개 2022.1.12 / 세바시 강연 Sebasi Talk)

도서 어떻게 경제적 자유를 얻을 것인가?

▶ 저자의 인생 투자 원칙
투자 관점은 뾰족하게! 
> 삼각형: 미래, 변화, 사람

투자 대상은 넓게!
> 역삼각형: 부동산, 비상장주식, 실물자산, 펀드, 크립토, 미술품

▶▶ 유대인의 별 모양이 됩니다.

인생투자 5단계 "5 tings" >> 투자에도 적용되지만 인생에도 적용되는 5가지!
STARTING - 20대/ 시작
TILTING - 30대/ 조정
BETTING - 40대/ 승부
PIVOTING- 50대/ 전환
NESTING - 60대/ 환원

아직 읽어보지 못한 책이지만, 우연히 따라간 유튜브 영상에 홀려 맛을 봤네요.

솔깃하며 나름의 원칙으로 투자하시며 열정을 보여주시는데 나도 해보고 싶다라는 마음을 가지게 되었네요.

 

[my feeling]

자기만의 투자원칙 (대부분 전문가들이 Know-How가 꼭 있으시죠!)

자기가 갖고 있는 범위에서 최대한 능력을 발휘 (투자하기 위해서는 혼자만의 공부로는 어려우니 많은 분들과 협업하는 능력!!)

투자 수업료의 지불 (투자시 크든 적든 간에 손실을 보고 시작하시는데 부사장님도 역시나 5천만원짜리 텀블러, 3천만원짜리 고구마, 1억짜리 손톱깎이, 3천만원짜리 와인 두병으로 수업료(?)를 지불 하셨습니다. 

***********************************

***** [HAProxy]

***********************************

Haproxy를 다운타임 없이 재시작(reload)하기

https://findstar.pe.kr/2018/08/15/seamless-reload-haproxy/

 

How MaxScale monitors servers

https://www.percona.com/blog/2016/03/02/maxscale-how-are-servers-monitored/

 

***********************************

***** [MySQL, MariaDB]

***********************************

Got timeout reading communication packets

https://m.blog.naver.com/theswice/221679482213

 

[MySQL] replication 환경에서 event scheduler 사용시 이슈

http://egloos.zum.com/ndba/v/3443108

 

[MariaDB] event scheduler ON/OFF & Enable/Disable 방법

https://growingsaja.tistory.com/571

 

***********************************
***** [Vault]

***********************************

[Vault][Docker] 비밀키 안전하게 보관하기(Python실습포함)

https://m.blog.naver.com/wideeyed/222025366151

 

 

***********************************
***** [HBase]

***********************************


HBase 설정 최적화하기
https://engineering.vcnc.co.kr/2013/04/hbase-configuration/
Remark. 국내 사이트중 잘되어 있음

Apache HBase ™ Reference Guide
http://hbase.apache.org/book.html

HBASE 설정
https://wwhitelife.tistory.com/28

스프링부트(2.3.7.RELEASE)의 임베디드 Undertow의 경우,

AccessLog 설정 중 응답시간 관련 설정값이 %D %T 값이 '-'으로 정상적으로 들어오지 않음

 

application.yml 설정 - Undertow AccessLog 설정은 요게 끝!

server:
   undertow:
      no-request-timeout: 60000
      accesslog:
         enabled: true
         dir: /access_log/
         pattern: '%{i,X-Forwarded-For} %l %t %r %s %b "%{i,Referer}" "%{i,User-Agent}" "%{i,GO-Agent}" %T'
         rotate: true
         prefix: access_.
         suffix: log

 

%D - Time taken to process the request, in millis

%T - Time taken to process the request, in seconds

(Tomcat의 경우, 잘만 들어오던데....)

https://kb.novaordis.com/index.php/Undertow_WildFly_Subsystem_Configuration_-_access-log

 

Undertow WildFly Subsystem Configuration - access-log - NovaOrdis Knowledge Base

Internal Overview This page documents the configuration of the Undertow AccessLogHandler. The handler generates log entries for each request. The handler can log any attributed that is provided with the ExchangeAttribute mechanism. The most common are pres

kb.novaordis.com

%D
Time taken to process the request, in milliseconds.
Note that %D won't return the request processing time, but "-" unless the http-listener's and ajp-listener's record-request-start-time is set to "true". Also see record-request-start-time.

위 내용에 따르면 %D, %T의 경우 record-request-start-time=true로 설정하라는데...

임베디드 Undertow에는 YML(또는 Properties)에 설정이 없다.

 

찾다보니...
https://gist.github.com/cdmatta/2a4536ab687bf7a92482faf031e8a0b5

 

Spring boot + Undertow access log, capture/record request processing time. Customize UndertowWebServerFactory

Spring boot + Undertow access log, capture/record request processing time. Customize UndertowWebServerFactory - UndertowAccessLogApplication.java

gist.github.com

Java 에서 설정할 수 있도록 샘플로 만들어둔 개발자분이 계심. 매우감사!!

 

PS. 같은 방법~ 다른 사이트! 추가

https://www.cnblogs.com/shareTechnologyl/articles/10757907.html

+ Recent posts