목록DevOps (48)
노우!쑤
# CentOS7 grafana ini file path # /etc/grafana/grafana.ini protocal = https domain = [domain] cert_file = [cert file 절대경로] cert_key = [key file 절대경로]
개요 grafana 대시보드 ifame export 시, 필요한 설정 # CentOS7 grafana ini file path # /etc/grafana/grafana.ini # error : 'Refused to display 'http://localhost:3000/login' in a frame because it set 'X-Frame-Options' to 'deny'.' allow_embedding = true # error : request auth [auth.anonymous] # enable anonymous access enabled = true
keytool -importcert -alias startssl -keystore $JAVA_HOME/lib/security/cacerts -storepass changeit -file [인증서경로]

https://www.elastic.co/guide/en/kibana/master/security-settings-kb.html Docker Compose 환경변수 세팅으로는 안됨 kibana.yml xpack.security.authc.providers.anonymous.anonymous1: credentials: username: "anonymous_service_account" password: "anonymous_service_account_password"

https://www.elastic.co/guide/en/kibana/8.3/settings.html Configure Kibana | Kibana Guide [8.3] | Elastic Set to all to log all events, including system usage information and all requests. Set to off to silence all logs. You can also use the logging cli commands to set log level to verbose or silence all logs. www.elastic.co kibana 대시보드 쓰려면 SAMESITECOOIKES 설정을 해줘야 하는데, 하려면 결국 SSL 세팅이 필요함

IIS ARR 이용하여 Reverse Proxy 구축하며, 기존에 세팅한 Timeout 설정이 적용 되지 않는다. 아래와 같이 세팅 해줘야한다. 근데 프록시별로 다르게 설정은 어떻게 하지?
개요 IIS Rewrite 설정을 동적으로 변경 public void Set() { ServerManager serverManager = new ServerManager(@"%windir%\system32\inetsrv\config\applicationhost.config"); SiteCollection sites = serverManager.Sites; List proxySites = sites.Where(x => x.Name.Contains("proxy")).ToList(); Configuration config = proxySites[0].GetWebConfiguration(); ConfigurationSection rulesSection = config.GetSection("system.webSe..
https://www.elastic.co/guide/en/fleet/current/air-gapped.html Air-gapped environments | Fleet and Elastic Agent Guide [8.1] | Elastic These steps use the standard Docker CLI, but you can create a Kubernetes manifest based on this information. These images can also be used with other container runtimes compatible with Docker images. www.elastic.co 1. 공개 Docker 레지스트리에서 Docker 이미지를 가져옵니다. docker pu..