CATEGORY
LIST
-
Linux atop 커맨드 https://repost.aws/ko/knowledge-center/ec2-linux-monitor-stats-with-atoplog파일 조회atop -r /var/log/atop/atop_xxxx.raw다음 출력 예에서 첫 번째로 기록된 스냅샷은 2021/09/02 17:03:44입니다.다음 스냅샷으로 이동하려면 키보드에서 **t(소문자)** 키를 누릅니다. 이전 스냅샷으로 돌아가려면 **T 키(대문자)**를 누릅니다. 특정 시간 슬롯을 분석하려면 **b 키를 누른 다음 날짜와 시간을 입력합니다.** atop 도구는 새 시간 변수 입력에 지정된 시간으로 건너뜁니다.g: 일반 정보(기본값).m: 메모리 세부 정보.d: 디스크 세부 정보.n: 네트워크 세부 정보. 이 키는 netatop 커널 모듈이 설치.. -
Zabbix zabbix-slack 연동 https://github.com/ericoc/zabbix-slack-alertscript/blob/master/README.md zabbix server 접속 후 아래 스크립트 파일 작성 및 테스트 vi /usr/lib/zabbix/alertscripts/slack-webhook.sh#!/bin/bash# Slack incoming web-hook URL and user nameurl='CHANGEME' # example: url=''username='Zabbix' # username='bsgone-zabbix'## Values received by this script:# To = $1 / Slack channel or user to send the message to, specified ..
-
Linux nfs 설정법 server 와 client 공유server 설정serveryum install -y nfs-utils libnfsidmapmkdir /tmp/share 공유할 폴더 생성chmod 777 /tmp/share 접근권한 쓰기읽기 다풀어줌NFSv4 설정 : /etc/idmapd.confvi /etc/idmapd.conf[General]#Verbosity = 0# The following should be set to the local NFSv4 domain name# The default is the host's DNS domain name.Domain = nfs.linux.vm #공유 도메인이름 지정nfs 파일 설정vi /etc/exports/tmp/share 192.168.255.0/24(rw,no_r..