목록DevOps (48)
노우!쑤
목록보기 Get-Item wsman:\localhost\Client\TrustedHosts IP추가하기 Set-Item wsman:\localhost\Client\TrustedHosts -Value
msbuild.exe /version Visual Studio 2017 이전에는 VS가 사용한 전역 MSBuild 설치가 있었지만 2017 년에는 MSBuild가 VS 설치에 로컬로 적용되어 서로 다른 VS 버전의 병렬 설치를 지원합니다.

IIS Version : 8.5 현상 : 응용프로그램 Pool 계정 변경시, 입력값 범위 오류 메시지 Alert 발생. 원인 : 버그로 생각됨 처리 : C:\Windows\System32\inetsrv\config\applicationHost.config 파일 직접 편집. 참고. https://docs.microsoft.com/en-us/iis/get-started/whats-new-in-iis-10/new-features-introduced-in-iis-10 New Features Introduced in IIS 10.0 This article discusses several of the new features which were introduced in Internet Information Servi..
포트 포워딩 설정하기 다음 명령은 127.0.0.1:8022로 들어오는 패킷을 192.168.100.1:22로 포워딩하도록 설정합니다. netsh interface portproxy add v4tov4 listenport=8022 listenaddress=127.0.0.1 connectport=22 connectaddress=192.168.100.1 포트 포워딩 해제하기 다음 명령은 127.0.0.1:8022로 들어오는 패킷에 대한 포트 포워딩 설정을 해제합니다. netsh interface portproxy delete v4tov4 listenport=8022 listenaddress=127.0.0.1 포트 포워딩 목록 확인하기 다음 명령으로 등록된 IPv4 to IPv4 포트 포워딩 목록을 확인할 수..
https://www.elastic.co/guide/en/apm/server/current/index.html APM Server Reference [7.13] | Elastic www.elastic.co foreground 실행 (서버) apm-server -e [fail] Exiting: error loading config file: config file ("/etc/apm-server/apm-server.yml") must be owned by the user identifier (uid=0) or root [solved] sudo chown root /etc/apm-server/apm-server.yml Agent https://www.elastic.co/guide/en/apm/agent/dot..
7.5.1에서 7.6.0으로 업그레이드 한 후 내 filebeat가 오류와 함께 중단됩니다. https://github.com/elastic/beats/pull/14069 동일한 데이터 경로를 가진 두 개의 비트 인스턴스가 동시에 실행되지 않도록 방지
버전확인 GET / - output { "name" : "TP-ELK-Web", "cluster_name" : "elasticsearch", "cluster_uuid" : "AOwHIX6JQ4e60t7F7uPJ9A", "version" : { "number" : "7.6.1", "build_flavor" : "default", "build_type" : "rpm", "build_hash" : "aa751e09be0a5072e8570670309b1f12348f023b", "build_date" : "2020-02-29T00:15:25.529771Z", "build_snapshot" : false, "lucene_version" : "8.4.0", "minimum_wire_compatibility_versi..
설정 및 전제 조건 온 프레미스 Elastic Stack 배포를 사용하는 경우 : kibana.yml 구성 파일에서 xpack.encryptedSavedObjects.encryptionKey설정을 추가합니다 . 이메일에 Kibana로 돌아가는 링크가있는 바닥 글을 포함하려면 server.publicBaseUrl구성 설정을 설정하십시오. 보안 기능이 있는 온 프레미스 Elastic Stack 배포를 사용하는 경우 : Elasticsearch와 Kibana 간의 통신 을 위해 TLS (전송 계층 보안)를 활성화해야합니다 . Kibana 알림은 API 키 를 사용 하여 백그라운드 규칙 확인 및 작업을 보호하고 API 키에는 HTTP 인터페이스에서 TLS가 필요합니다 . 프록시로는 충분하지 않습니다. http ..