| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | |
| 7 | 8 | 9 | 10 | 11 | 12 | 13 |
| 14 | 15 | 16 | 17 | 18 | 19 | 20 |
| 21 | 22 | 23 | 24 | 25 | 26 | 27 |
| 28 | 29 | 30 |
- 인증서
- rhv
- 맥북 한글
- yum
- tfenv
- OSX 엑셀
- AWS
- 맥북 백업
- EKS
- 맥북 엑셀 한글
- 테라폼
- Cannot upload enabled repos report
- 타임머신
- Chrome
- v1alpha1
- terraform
- invalid apiVersion
- 테라폼 버전
- ovirt
- 빠르게
- ERR_CERT_INVALID
- 버전관리
- 연결이 비공개
- Today
- Total
목록Cloud (4)
hisosic
1. Source ~]$ cat boto3_ec2_all_listing.py #!/usr/bin/env python3 import boto3 import argparse import sys def get_tag(resource, region): EC2_RESOURCE = boto3.resource(resource, region) instances = EC2_RESOURCE.instances.all() for instance in instances: print(f'EC2 instance {instance.id}" information:') print(f'Instance state: {instance.state["Name"]}') print(f'Instance AMI: {instance.image.id}')..
1. iostat를 사용해 다음 명령을 실행하면 탑재된 모든 볼륨의 I/O 통계를 1초 단위로 보고합니다. iostat -xdmzt 1 참고: iostat 도구는 sysstat 패키지의 일부입니다. iostat 명령을 찾을 수 없으면 다음 명령을 실행하여 Amazon Linux AMI에 sysstat를 설치합니다. $ sudo yum install sysstat -y 2. 처리량 제한에 도달했는지 확인하려면 출력에서 rMB/초 및 wMB/초를 검토하세요. rMB/초 + wMB/초가 볼륨의 최대 처리량보다 크면 마이크로버스트가 발생하고 있는 것입니다. IOPS 한계에 도달하는지 확인하려면 출력에서 r/초 및 w/초를 검토합니다. r/초 + w/초가 볼륨의 최대 IOPS보다 크면 마이크로 버스트가 발생하고 ..
#!/usr/bin/env python3 # -*- coding: utf-8 -*- import threading import boto3 import logging import sys import os import datetime import shutil import argparse import requests from boto3.s3.transfer import TransferConfig from timeit import default_timer docker_path = "/app" db_dir = "/data" send_url = ( "https://hooks.slack.com/services/TB#######/B0########/asdfasdfasdf" ) def parse_args(): parse..
yum install fio fio --directory=/ --name fio_test_file --direct=1 --rw=randread --bs=4K --size=1G --numjobs=16 --time_based --runtime=180 --group_reporting --norandommap fio-3.7 Starting 16 processes fio_test_file: Laying out IO file (1 file / 1024MiB) fio_test_file: Laying out IO file (1 file / 1024MiB) fio_test_file: Laying out IO file (1 file / 1024MiB) fio_test_file: Laying out IO file (1 fi..