목록DevOps (48)
노우!쑤
▶ 설정 /etc/elasticsearch/elasticsearch.yml YAML 문법으로 설정 ▶ 공식 문서 https://esbook.kimjmin.net/02-install/2.3-elasticsearch/2.3.2-elasticsearch.yml

▶ 다운로드 https://www.elastic.co/kr/downloads/beats/metricbeat RPM 64BIT ▶ 설치 sudo rpm -i metricbeat-7.13.2-x86_64.rpm ▶ /etc/metricbeat 폴더 이동 ▶ 설정파일 수정(metricbeat.yml) output.elasticsearch: # Array of hosts to connect to. hosts: ["localhost:9200"] ▶ 사용 할 모듈 선택 sudo metricbeat modules enable elasticsearch-xpack ▶ 서비스 실행 sudo service metricbeat start ▶ 화면 ▶ 공식 가이드 https://www.elastic.co/guide/en/bea..
SELECT S.SPID, S.LOGINAME, S.LOGIN_TIME, S.LAST_BATCH, C.CLIENT_NET_ADDRESS FROM sys.sysprocesses S, sys.dm_exec_connections C WHERE S.spid = C.SESSION_ID SELECT * FROM sys.dm_os_performance_counters WHERE counter_name = 'User Connections'
다운로드 https://www.elastic.co/kr/downloads/beats/metricbeat Download Metricbeat • Ship Metrics to Elasticsearch | Elastic Download Metricbeat, the open source tool for shipping metrics from operating systems and services such as Apache web server, Redis, NGINX, and more. www.elastic.co WINDOWS MSI 64-BIT (BETA)shaasc ▶ msi 다운 받았는데.. 동작을 잘 안한다. ▶ zip 다운 ▶ 압축 풀고 metricbeat 으로 폴더명 변경 ▶ PowerShell(관리자..
- .Net Framwork 4.6 - ElasticSearch 7.13 - Kibana - ElasticApm https://www.elastic.co/guide/en/apm/server/current/installing.html Step 1: Install | APM Server Reference [7.13] | Elastic If script execution is disabled on your system, you need to set the execution policy for the current session to allow the script to run. For example: PowerShell.exe -ExecutionPolicy UnRestricted -File .\install-s..
Repository 세팅 # registry 이미지를 가져오기 $ docker pull registry # registry를 실행하기 $ docker run -itd --name docker-registry -p 5000:5000 registry Push Image Pull Image