본문 바로가기

728x90

전체 글

[AWS] IAM 사용자가 MFA 디바이스를 스스로 관리하도록 허용 AWS IAM 사용자가 MFA 디바이스를 스스로 관리하도록 허용 멀티 팩터 인증(MFA) 생성하기-실패 IAM 사용자(scbyun) 로그인 보안 자격 증명 > 멀티 팩터 인증(MFA) IAM 정책 생성 IAM > 액세스 관리 > 정책 > 정책 생성 > JSON { "Version": "2012-10-17", "Statement": [ { "Sid": "AllowListActions", "Effect": "Allow", "Action": [ "iam:ListUsers", "iam:ListVirtualMFADevices" ], "Resource": "*" }, { "Sid": "AllowIndividualUserToListOnlyTheirOwnMFA", "Effect": "Allow", "Action": [.. 더보기
[원도우] 윈도우11 docker 설치(WSL2 설치) 윈도우11 docker 설치(WSL2 설치) 원도우 버전 정보 확인 winver wsl --install Linux용 Windows 하위 시스템 사용 dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart Virtual Machine 기능 사용 dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart 컴퓨터 재부팅 WSL2를 기본 버전으로 설정 wsl --set-default-version 2 WSL2 우분투 설치하기 Linux 배포 목록 확인 wsl --list --online 우분투 설치 ws.. 더보기
애플 맥북 실리콘 M1에서 도커 컨테이너 실행 시 오류 애플 맥북 실리콘 M1에서 도커 컨테이너 실행 시 오류 The requested image's platform (linux/amd64) does not match the detected host platform (linux/arm64/v8) and no specific platform was requested 해당 오류는 이미지 플랫폼이 호스트 플랫폼과 일치하지 않을 때 발생합니다. 예를 들어, linux/amd64 플랫폼의 이미지를 linux/arm64/v8 플랫폼의 호스트에서 실행하려고 할 때 이 오류가 발생할 수 있습니다. 이 문제를 해결하기 위해 다음 중 하나를 시도할 수 있습니다. 1. 호스트 플랫폼과 일치하는 이미지 사용: 호스트의 플랫폼에 맞는 이미지를 사용해야 합니다. 예를 들어, linu.. 더보기
HAProxy 컴파일을 통해 설치하는 방법(source compile) HAProxy 컴파일을 통해 설치하는 방법(source compile) 테스트 환경 $ cat /etc/redhat-release CentOS Linux release 7.9.2009 (Core) 의존성 패키지 설치 yum install -y make gcc perl pcre-devel zlib-devel openssl-devel lua-devel systemd-devel $ lua -v Lua 5.1.4 Copyright (C) 1994-2008 Lua.org, PUC-Rio lua 5.3 업그레이드(lua-5.3.0) wget http://www.nosuchhost.net/~cheese/fedora/packages/epel-7/x86_64/cheese-release-7-1.noarch.rpm yum .. 더보기
Visual Studio Code(vscode) unins000.exe 액세스 거부 오류 Visual Studio Code(vscode) unins000.exe 액세스 거부 오류 액세스 거부 오류 사용 권한을 모든 권한 허용 DIR : C:\Users\Administrator\AppData\Local\Programs\Microsoft VS Code 참고URL - https://github.com/microsoft/vscode/issues/75367 더보기
원도우 10 제품 키 조회(시리얼 번호 조회) 원도우 10 제품 키 조회(시리얼 번호 조회) cmd >> reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SoftwareProtectionPlatform" /v BackupProductKeyDefault Windows 정품 인증 원도우11 제품 키 조회(시리얼 번호 조회) cmd >> wmic path softwarelicensingservice get oa3xoriginalproductkey 더보기
리눅스 glances 명령어 glances 명령어 Glances는 리눅스 시스템 모니터링 도구로, 시스템의 리소스 사용률, 네트워크 활동, 디스크 상태 등을 실시간으로 모니터링할 수 있습니다. 테스트 환경 $ cat /etc/redhat-release CentOS Linux release 7.9.2009 (Core) Glances를 설치하고 사용하는 방법은 다음과 같습니다. glances 설치 sudo yum install epel-release sudo yum install -y glances glances 실행하기 터미널에서 glances 명령을 실행합니다. Glances는 기본적으로 터미널 환경에서 실행되며, 실시간으로 시스템의 상태를 모니터링합니다. Glances는 키보드에서 다양한 명령을 사용할 수 있습니다. 아래는 일부 .. 더보기
[리눅스] influxdb, grafana, telegraf 연동 influxdb, grafana, telegraf 연동 influxdb 설치 : https://sangchul.kr/335 grafana 설치 : https://sangchul.kr/334 telegraf 설치 : https://sangchul.kr/333 influxdb와 telegraf 연동하기 influxdb에서 telegraf 설정 생성 http://{Server-IP}:8086 influxdb output plugin export INFLUX_TOKEN=OwkgzsNcgkcrwQj4Rq-wtFBjM45W64e2R1kZsHHUQHZSMnwMGsVURSyN1LJG-3vpFZTAv30XJNNIAq4bYmP-TQ== telegraf --config http://192.168.70.234:8086/api.. 더보기

728x90